#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; }
时间: 2024-12-16 14:35:19