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

分割字符串

时间:2017-02-21 22:29:02      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:str   printf   参数   void   ret   class   ring   pre   二次   

#include <stdio.h>
#include <string.h>

/*
分割字符串
*/
int main(void){
    
    char s[100] = "123-456-789-abc-edf";
    
    //strtok第一次调用的时候,第一个参数是字符串,
    //但第二次调用的时候,第一个参数是NULL
    const char *buf =strtok(s,"-");
    
    while(buf){
        printf("%s\n",buf);
        buf = strtok(NULL,"-");//如果strtok没有找到指定的分割符,那么返回NULL;
        
    }
    return 0;
    
}

 

分割字符串

标签:str   printf   参数   void   ret   class   ring   pre   二次   

原文地址:http://www.cnblogs.com/dafume/p/6426253.html

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