c ++:按分隔符拆分字符串

时间:2013-08-06 23:08:43

标签: c++ arrays string split

例如,我有这个字符串:hello:there:world

如何将这三个单词拆分为字符串数组, 我的意思是最后的结果将是:

arr[0] = "hello";
arr[1] = "there";
arr[2] = "world";

提前致谢。

0 个答案:

没有答案