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

strtok函数

时间:2018-01-28 13:54:42      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:字符串   函数   str   span   调用   color   style   return   stdio.h   

 1 #include<stdio.h> 
 2 #include<string.h>
 3 
 4 int main()
 5 {
 6     char a[100] = "aa_vfb_wffwk_fth_nnn";
 7     char *s;//定义一个char的指针变量 
 8     s = strtok(a, "_");//strtok函数分割字符串 
 9     
10     while(s)
11     {
12        printf("%s\n", s); 
13        s = strtok(NULL, "_");//第二次调用,第一个参数写NULL
14     }
15     
16     return 0;
17 }

 

 技术分享图片

 

strtok函数

标签:字符串   函数   str   span   调用   color   style   return   stdio.h   

原文地址:https://www.cnblogs.com/yangxiaoqin/p/8370932.html

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