stringstream code example
Example 1: convert string to stream c++
#include <string>
#include <iostream>
#include <sstream>
int main () {
std::stringstream ss;
ss.str ("Example string");
std::string s = ss.str();
std::cout << s << '\n';
return 0;
}
Example 2: stringstream tutorial
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
using namespace std;
int main() {
string str("Hello from the dark side");
string tmp;
stringstream str_strm(str);
vector<string> words;
while (str_strm >> tmp) {
words.push_back(tmp);
}
for(int i = 0; i<words.size(); i++)
cout << words[i] << endl;
}
Example 3: how to parse using stringstream
#include <iostream>
#include <sstream>
std::string input = "abc,def,ghi";
std::istringstream ss(input);
std::string token;
while(std::getline(ss, token, ',')) {
std::cout << token << '\n';
}
Example 4: c++ string to stream
ostringstream ssTextAsStream("This is part of the stream.");
string sTextAsString = ssTextAsStream.str();
cout << sTextAsString << "\n";
Example 5: stringstream in c++
std::stringstream os;
os << "12345 67.89";
std::string strValue;
os >> strValue;
std::string strValue2;
os >> strValue2;
std::cout << strValue << " - " << strValue2 << std::endl;