码迷,mamicode.com
首页 > 其他好文 > 详细

strtok的使用

时间:2019-10-17 12:18:27      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:pre   std   返回值   参数   bsp   --   substr   strtok   %s   

/* strtok函数的使用 */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

// 函数原型:
// char *strtok(char *str, const char *delim)

// 参数:
// str -- 要被分解成一组小字符串的字符串
// delim -- 包含分隔符的 C 字符串

// 返回值
// 该函数返回被分解的第一个子字符串,如果没有可检索的字符串,则返回一个空指针

int main() {
      char testString[] = "     tong   yi    shu   ";
      const char delim[] = " ";
      //不同的delim对应的分解结果如下
      // tong -- 4
      // yi -- 2
      // shu -- 3

      //const char delim[] = "oh";
      //     t -- 6
      //ng   yi    s -- 12
      //u    -- 4

      char* subStr = strtok(testString, delim);
      while (subStr != NULL) {
            printf("%s -- %d\n", subStr, strlen(subStr));
            subStr = strtok(NULL, delim);
      }
      return 0;
}

 

strtok的使用

标签:pre   std   返回值   参数   bsp   --   substr   strtok   %s   

原文地址:https://www.cnblogs.com/tongyishu/p/11690985.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!