How do I convert from std::stringstream to std::string in C++?
Do I need to call a method on the string stream?
|
1
|
How do I convert from std::stringstream to std::string in C++? Do I need to call a method on the string stream?
|
|||
|
|
|
yourStringStream.str() |
||||
|
|
|
You might be able to use this library, but I could be wrong |
||
|
|
|
|
Use the .str()-method. |
||
|
|
|
From memory, you call stringstream::str() to get the std::string value out. |
||
|
|