我必须使用strok
使用 C++ 的函数拆分示例字符串。示例字符串是:"This|is||a||sample||string|"
,而使用strok
正常拆分它。
#include <stdio.h>
#include <string>
#include <string.h>
using namespace std;
int main()
{
string str="This||a||sample||string|";
string a;
str=strtok ((char *)str.c_str(),"|");
while (str.c_str() != NULL)
{
printf ("str:%s\n",str.c_str());
str = strtok (NULL, "|");
}
return 0;
}
结果:
str:This
str:a
str:sample
str:string
虽然将相同的字符串更改为"This| |a| |sample| |string|"
给出了预期的结果:
str:This
str:
str:a
str:
str:sample
str:
str:string
如何在不更改字符串的情况下获得预期结果?