我目前正在尝试拆分字符串并将其存储到vector
。
例如,
std::string argData = "1:/path/to/file, 3:/path/to/differentfile, 4:/path/to/anotherfile";
vector<string> v = Util::split(argData, ",");
将返回[&#34; 1:/ path / to / file&#34;,&#34; 3:/ path / to / differentfile&#34;,&#34; 4:/ path / to / anotherfile& #{1;}中的#34;]。
我想做的是:
v
我将如何在C ++中执行此操作?我无法访问C ++ 11 for auto。