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

浅谈strtok

时间:2016-06-09 06:12:36      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

 原型:char *strtok(char *s, char *delim);

功能:分解字符串为一组标记串。s为要分解的字符串,delim为分隔符字符串。

说明:首次调用时,s必须指向要分解的字符串,随后调用要把s设成NULL。 strtoks中查找包含在delim中的字符并用NULL(‘\0‘)来替换,直到找遍整个字符串。 返回指向下一个标记串。当没有标记串时则返回空字符NULL

 char *p = strtok( str , " " );  

       while( p != NULL )

       {

          strcpy( ss[i++] , p ) ;

          p = strtok( NULL , " " ) ;

       }

浅谈strtok

标签:

原文地址:http://www.cnblogs.com/ly-rabbit-wust/p/5571841.html

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