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