c语言的split字符串分割函数strtok的使用

时间:2022-01-11 17:00:52

c语言也有类似其他语言的split字符串分割函数,就是strtok

头文件:#include <string.h>

定义函数:char * strtok(char *s, const char *delim);

函数说明:strtok()用来将字符串分割成一个个片段。参数s 指向欲分割的字符串,参数delim 则为分割字符串,当strtok()在参数s 的字符串中发现到参数delim 的分割字符时则会将该字符改为\0 字符。在第一次调用时,strtok()必需给予参数s 字符串,往后的调用则将参数s 设置成NULL。每次调用成功则返回下一个分割后的字符串指针。

返回值:返回下一个分割后的字符串指针,如果已无从分割则返回NULL。


示例代码:

//用逗号做分隔符,读出内容
// char s[] = "123-sldkf-123ls-343434-dfjdlkfj-dflcmvn";
char *delim = ",";
char *p,*tmp;
uint32_t tx[3];
int i = 0;
uint32_t count;
uint8_t r_data;


if(strstr(send_msg,"{") == NULL){
continue;//如果不包含左大括号"{",则认为不是数组,跳出循环读下一行。
}
p = strtok(send_msg, delim);
i=0;
#if DEBUG
printf("%s", p);
#endif
tmp = strstr(p,"0b") + 2;//ad9631.txt原始数据格式:{0b1,0x000,0x00},0b后才是数字
tx[i] = atoi(tmp);
#if DEBUG
printf("(0x%x) ", tx[i]);
#endif
i++;

while((p = strtok(NULL, delim))){
#if DEBUG
printf("%s", p);
#endif
if(i == 1){
tmp = strstr(p,"0x") + 2;//ad9631.txt原始数据格式:{0b1,0x000,0x00},第二个数0x后才是数字
tx[i] = atoD(tmp,16);
#if DEBUG
printf("(0x%x) ", tx[i]);
#endif
}
if(i == 2){
tmp = strstr(p,"}") - 2;//ad9631.txt原始数据格式:{0b1,0x000,0x00},第三个数}前两个字节才是数字
tx[i] = atoD(tmp,16);
#if DEBUG
printf("(0x%x)\n", tx[i]);
#endif
}
i++;
if(i>=3) break;
}
#if DEBUG
printf("\n");
#endif

具体源码可以到这里下载