标签: c++ arrays string split
例如,我有这个字符串:hello:there:world
hello:there:world
如何将这三个单词拆分为字符串数组, 我的意思是最后的结果将是:
arr[0] = "hello"; arr[1] = "there"; arr[2] = "world";
提前致谢。