打印
[嵌入式linux]

标准C中strtok函数分割字符串

[复制链接]
1821|0
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
ferenc2|  楼主 | 2013-3-19 18:51 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
2013-3-19

标准C中可以用strtok函数来分割字符串,strtok函数的使用与其他大部分函数的使用方法不同。

函数为:char *strtok(char *strings,const char *tokseps);其中strings为要分割的字符串,tokseps是用来分割的字符。

用以下的例子进行分析:

第6行声明字符串为字符型数组,但当声明为指针型(char *strings = "hello,world!\nwelcome to the earth\")时,编译能够

通过,但是运行时会出现段错误,不知道是什么原因,还要请教一下各位。

第8行tokseps为分隔符,“,”、“\n”、“ ”

第9行pt用来接收分割出来的字符串

注意:strtok函数的返回值是分割后剩下字符串的指针,所以分割出一个子字符串之后,再次调用时要用NULL代替第一个参数

例如第15行。

1 #include<stdio.h>
  2 #include<string.h>
  3  
  4 int main()
  5 {
  6         char strings[] = "hello,world!\nwelcome to the earth\n";
  7         puts(strings);
  8         char *tokseps = ",\n ";  
  9         char *pt;
10
11         pt = strtok(strings,tokseps);
12         while(pt)
13         {
14                 puts(pt);
15                 pt = strtok(NULL,tokseps);
16         }
17  
18         return 0;
19 }
输出为:

hello
world!
welcome
to
the
earth


相关帖子

发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

134

主题

207

帖子

3

粉丝