迭代字符串向量

时间:2018-01-22 14:40:47

标签: c++ vector

我目前正在尝试拆分字符串并将其存储到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。

0 个答案:

没有答案