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

标准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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值