#include <stdio.h>
#include <string.h>
int main()
{
char str[] = "root:x::0:root:/root:/bin/bash:";
char *token;
token = strtok(str, ":");
printf("%s\n",token);
while((token = strtok(NULL, ":")) != NULL)
printf("%s\n", token);
return 0;
}
[scwangj@LB270210 cfd_simple]$ gcc -o hello hello.c
[scwangj@LB270210 cfd_simple]$ ./hello
root
x
0
root
/root
/bin/bash
[scwangj@LB270210 cfd_simple]$
对这个函数仰慕已久。
第一次调用strtok时,要传递字符串str的首地址给strtok的第一个参数,以后每次调用只要传NULL给第一个参数就可以了,strtok函数中有一个静态指针变量记录上次处理到字符串的什么位置。
str字符串会被strtok不断修改,每次调用strtok把str中的一个分隔符改成'\0',分割出一个小字符串,并返回这个小字符串的首地址。