1. 程式人生 > >C++按指定模式擷取字串函式

C++按指定模式擷取字串函式

char *source="hello world ni hao";

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

while(c!=NULL)

{

cout<<s;

c=strtok(NULL,".");

}

輸出為helloworldnihao