0%
我们经常遇到要分割字符串例如
20-21,15,18,30,5-10
以,
来分割
1 2 3 4 5 6 7 8 9
| void Stringsplit(string str, const char split,vector<string>& res) { istringstream iss(str); string token; while (getline(iss, token, split)) { res.push_back(token); } }
|
我们只需要调用
1 2 3
| string str; vector<string> res; Stringsplit(str, ',', res);
|