我正在处理需要字符串和文件操作的作业。我目前正在处理字符串操作部分,我尝试使用strtok分隔文件中的行,用逗号分隔。但是,我不确定strtok的工作原理。我正在查看下面的代码并且不太明白为什么第二个strtok调用中存在NULL,当NULL不是一个字符串时。
我正在运行的代码:
/ ********************************************** ******************* * *目的:计划演示' strtok'功能。 *作者:M J Leslie *日期:94年4月23日 * ************************************************** ************** /
#include <stdio.h>
#include <string.h>
main()
{
/* Copy the constant into the memory
* pinted to by 'test_string' */
char test_string[50]="string to split up";
/* if 'test_string' is declared as below and the program will give a
* 'Segmentation fault' This is because test_string' is pointing
* to a constant i.e. somethin that cant be changed.
char *test_string="string to split up"; */
char *sub_string;
/* Extract first string */
printf("%s\n", strtok(test_string, " "));
/* Extract remaining
* strings */
while ( (sub_string=strtok(NULL, " ")) != NULL)
{
printf("%s\n", sub_string);
}
}
/*****************************************************************
*
* Program O/P will look like this...
*
* string
* to
* split
* up
*
*****************************************************************/