strtok 查找指定字符之前的子串

头文件

#include <string.h>

语法

char *strtok( char *str1, const char *str2 );

功能

函数返回字符串 str1 中紧接“标记”的部分的指针, 字符串 str2 是作为标记的分隔符。如果分隔标记没有找到,函数返回 NULL。为了将字符串转换成标记,第一次调用 str1 指向作为标记的分隔符。之后所以的调用 str1 都应为 NULL。

示例

#include <string.h>
#include <stdio.h>

int main(void)
{
    char input[16] = "abc,d";
    char *p;

    /* strtok places a NULL terminator
    in front of the token, if found */
    p = strtok(input, ",");
    if (p)   printf("%s\n", p);

    /* A second call to strtok using a NULL
    as the first parameter returns a pointer
    to the character following the token  */
    p = strtok(NULL, ",");
    if (p)   printf("%s\n", p);
    return 0;
}

输出结果:

abc
d
关于
本网站属于个人的非赢利性网站,转载的文章遵循原作者的版权声明,如果原文没有版权声明,请来信告知:hxstrive@outlook.com
公众号