cpp split string by space
std::vector<std::string> string_split(const std::string& str) {
std::vector<std::string> result;
std::istringstream iss(str);
for (std::string s; iss >> s; )
result.push_back(s);
return result;
}
cpp split string by space
std::vector<std::string> string_split(const std::string& str) {
std::vector<std::string> result;
std::istringstream iss(str);
for (std::string s; iss >> s; )
result.push_back(s);
return result;
}
c++ split string by space into array
Astringstream associates a string object with a stream allowing you to
read from the string as if it were a stream (like cin). To use stringstream,
we need to include sstream header file.
The stringstream class is extremely useful in parsing input.
in the cp when u need to remove spaces from the string and store it into the
vector or other type of data structure at that it will be your
first choice out there.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us