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

字符串分割

时间:2016-10-31 21:34:21      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:har   pretty   isp   nbsp   splay   com   分割   while   display   

For example:

   char str[] = "now # is the time for all # good men to come to the # aid of their country";
   char delims[] = "#";
   char *result = NULL;
   result = strtok( str, delims );
   while( result != NULL ) {
       printf( "result is \"%s\"\n", result );
       result = strtok( NULL, delims );
   }            

The above code will display the following output:

   result is "now "
   result is " is the time for all "
   result is " good men to come to the "
   result is " aid of their country"

字符串分割

标签:har   pretty   isp   nbsp   splay   com   分割   while   display   

原文地址:http://www.cnblogs.com/ajmd/p/6017165.html

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