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?

link|improve this question

2  
Why try to be "clever"? – Kaleb Pederson Jun 23 '09 at 15:21
6  
For example for the reason he said, that sscanf is not type-safe. – jalf Jun 23 '09 at 15:30
3  
@Kaleb Pederson: For many English speakers, "clever" can just mean "smart" and doesn't have the negative connotation it sometimes has in the US. Note that Ben Hymers is from the UK. – Naaff Jun 23 '09 at 15:30
1  
"Clever" has negative connotations? That probably says something about the US. I'm not sure what though. Yes, I meant smart :) – Ben Hymers Jun 24 '09 at 15:43
feedback

6 Answers

up vote 21 down vote accepted

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:

#include <sstream>

...

std::stringstream s("123 456 789");
int a, b, c;
s >> a >> b >> c;
link|improve this answer
feedback

For most jobs standard streams do the job perfectly,

std::string data = "AraK 22 4.0";
std::stringstream convertor(data);
std::string name;
int age;
double gpa;

convertor >> name >> age >> gpa;

if(convertor.fail() == true)
{
    // if the data string is not well-formatted do what ever you want here
}

If you need more powerful tools for more complex parsing, then you could consider Regex or even Spirit from Boost.

link|improve this answer
feedback

If you include sstream you'll have access to the stringstream classes that provide streams for strings, which is what you need. Roguewave has some good examples on how to use it.

link|improve this answer
feedback

fgets or strtol

link|improve this answer
feedback

sscanf is a perfectly fine function to use in C. Combined with fgets, it allows you to parse data without too much work. Don't forget to check its return value and also turn up compiler warnings so you can detect format string to variable type mismatches.

On the other hand, don't use scanf.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.