除了普通的判断,之外使用stringstream
代码
string s1("1,2,3");
stringstream ss(str);
string s2("");
while(getline(ss, s2, ',')) {
cout << s2 << endl;
}
除了普通的判断,之外使用stringstream
代码
string s1("1,2,3");
stringstream ss(str);
string s2("");
while(getline(ss, s2, ',')) {
cout << s2 << endl;
}