Answers for "get a text and split it by spaces in c++"

C++
7

how to make string get spaces c++

string s;
getline(cin,s);
Posted by: Guest on June-02-2020
0

c++ split string by several space

std::string s = "split on    whitespace   "; 
std::vector<std::string> result; 
std::istringstream iss(s); 
for(std::string s; iss >> s; ) 
    result.push_back(s);
Posted by: Guest on December-18-2020

Browse Popular Code Answers by Language