C++按指定模式截取字符串函数

char *source="hello world ni hao";

char *c=strtok(s,".");

while(c!=NULL)

{

cout<

c=strtok(NULL,".");

}

输出为helloworldnihao

你可能感兴趣的:(c++)