2009年4月15日 星期三

C/C++ - strtok

這是一個可以分析字串的指令,但是,我記得我之前好像也有記錄一個指令可以分析字串的,現在找不到啦~
請參考getopt - getopt_long - 命令行參數的分析

char * strtok ( char * str, const char * delimiters );

/* strtok example */
#include <stdio.h>
#include <string.h>

int main ()
{
char str[] ="- This, a sample string.";
char * pch;
printf ("Splitting string \"%s\" into tokens:\n",str);
pch = strtok (str," ,.-");
while (pch != NULL)
{
printf ("%s\n",pch);
pch = strtok (NULL, " ,.-");
}
return 0;
}


參考資料:
strtok - C++ Reference

沒有留言: