I have a problem that sscanf solves (extracting things from a string). I don't like sscanf though since it's not type-safe and is old and horrible. I want to be clever and use some more modern parts of the C++ standard library. What should I use instead?
feedback
|
|
I think the other answers are missing the point. The question isn't about I/O, it's about extracting data from a string. Try stringstream:
| ||||
|
feedback
|
|
For most jobs standard streams do the job perfectly,
If you need more powerful tools for more complex parsing, then you could consider Regex or even Spirit from Boost. | |||
|
feedback
|
|
If you include | ||||
|
feedback
|
|
This is a good place to start. In particular, this is probably the best bet. | |||
|
feedback
|
|
On the other hand, don't use | |||
|
feedback
|