vote up 1 vote down star

Say i have a stringsteam in C++, and I want to do different operations to it like:

Searching for a sequence of characters, Converting block of text into int (in the middle of the line), Moving the get pointer back and forth and so on.

What is the standard/common way of doing this kind of things with stringstreams?

flag

3 Answers

vote up 4 vote down check

You can use stringstream::str() method which returns the associated std::string object. Then you can do your desired operations on the returned string.

link|flag
vote up 2 vote down

As the name is saying, stringtream is a stream. A stream allows for sequential access, not random access. If you want random access, you can use the stringstream::str() function to get the string version of the string.

link|flag
vote up 3 vote down

Read this article The Standard Librarian: Stringstreams and Their Friends.

link|flag

Your Answer

Get an OpenID
or

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