vote up 0 vote down star
1

How do I convert from std::stringstream to std::string in C++?

Do I need to call a method on the string stream?

flag

Did you read the replies to your previous question, which covered this? – Neil Butterworth Mar 19 at 16:42

4 Answers

vote up 11 vote down check

yourStringStream.str()

link|flag
SO meta-question: Why is it that the answers to the simplest questions always get so many upvotes compared to answers to more involved/obscure questions? I suppose maybe it's just that more people read the simple questions. – Tyler McHenry Mar 19 at 19:04
According to Einstein, you don't understand something unless you can explain it in one sentence. – Nick Bolton Mar 19 at 20:37
vote up -1 vote down

You might be able to use this library, but I could be wrong

link|flag
vote up 3 vote down

Use the .str()-method.

http://www.cppreference.com/wiki/io/sstream/str

link|flag
+1 because you provided a link, unlike the other equivalent answers. – rmeador Mar 19 at 16:42
vote up 1 vote down

From memory, you call stringstream::str() to get the std::string value out.

link|flag

Your Answer

Get an OpenID
or

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