std::vector<std::string> SplitStringBySpace(std::string strs) {
std::vector<std::string> vector_str;
if (strs.empty()) {
return vector_str;
}
boost::trim(strs);
boost::split(vector_str, strs, boost::is_any_of(" "));
return vector_str;
}
std::vector<std::string> DivideBySpace(std::string str) {
std::vector<std::string> str_array;
std::string tempstr;
// 以空格分隔字符串
std::istringstream iss(str);
while (iss >> tempstr) {
str_array.push_back(tempstr);
}
return str_array;
}
字符串以空格分割的两种方法
最新推荐文章于 2024-09-27 16:25:49 发布