strtok函数
Posted heheheda
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了strtok函数相关的知识,希望对你有一定的参考价值。
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函数的主要内容,如果未能解决你的问题,请参考以下文章