strtok和它的用法

时间:2017-12-06 23:32:10

标签: c string strtok

我正在处理需要字符串和文件操作的作业。我目前正在处理字符串操作部分,我尝试使用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
 *
 *****************************************************************/

1 个答案:

答案 0 :(得分:0)

来自documentation

  

每个后续调用,使用空指针作为第一个参数的值,从保存的指针开始搜索,其行为如上所述。