Is there a `std::format` counterpart for string parsing?

61 views Asked by At

std::format serves me well as a replacement of C-style std::sprintf. I'm not yet aware of any similar counterpart for string parsing. Is there a similar thing proposed for C++? I want to use it in place of C-style std::sscanf.

I'm aware of operator>>. It's not what I'm looking for.

0

There are 0 answers