码迷,mamicode.com
首页 > 其他好文 > 详细

字符串分割strtok_s

时间:2019-01-19 15:15:05      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:std   src   fir   first   一个   ide   安全   img   第一个   

https://blog.csdn.net/hustfoxy/article/details/23473805/ 

1)、strtok函数

函数原型:char * strtok (char *str, const char * delimiters);     

参数:str,待分割的字符串(c-string);delimiters,分割符字符串。

该函数用来将字符串分割成一个个片段。参数str指向欲分割的字符串,参数delimiters则为分割字符串中包含的所有字符。当strtok()在参数s的字符串中发现参数delimiters中包涵的分割字符时,则会将该字符改为\0 字符。在第一次调用时,strtok()必需给予参数s字符串,往后的调用则将参数s设置成NULL。每次调用成功则返回指向被分割出片段的指针。
需要注意的是,使用该函数进行字符串分割时,会破坏被分解字符串的完整,调用前和调用后的s已经不一样了。第一次分割之后,原字符串str是分割完成之后的第一个字符串,剩余的字符串存储在一个静态变量中,因此多线程同时访问该静态变量时,则会出现错误。

技术分享图片
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
 
int main()
{
    char str[]="ab,cd,ef";
    char *ptr;
    printf("before strtok:  str=%s\n",str);
    printf("begin:\n");
    ptr = strtok(str, ",");
    while(ptr != NULL){
        printf("str=%s\n",str);
        printf("ptr=%s\n",ptr);
        ptr = strtok(NULL, ",");
    }
    system("pause");
    return 0;
View Code

2)、strtok_s函数
strtok_s是windows下的一个分割字符串安全函数,其函数原型如下:
char *strtok_s( char *strToken, const char *strDelimit, char **buf);
这个函数将剩余的字符串存储在buf变量中,而不是静态变量中,从而保证了安全性。

strtok_s(strToken, strDelimit, context,locale)

strToken

这个参数用来存放需要分割的字符或者字符串整体

strDelimit

这个参数用来存放分隔符(例如:,.!@#$%%^&*() \t \n之类可以区别单词的符号)

context

这个参数用来存放被分割过的字符串

locale

这个参数用来储存使用的地址

在首次调用strtok_s这个功能时候会将开头的分隔符跳过然后返回一个指针指向strToken中的第一个单词,在这个单词后面茶插入一个NULL表示断开。多次调用可能会使这个函数出错,context这个指针一直会跟踪将会被读取的字符串。

技术分享图片
#include <string.h> 
#include <stdio.h>

char string[] = 
".A string\tof ,,tokens\nand some  more tokens"; 
char seps[] = " .,\t\n"; 
char *token = NULL; 
char *next_token = NULL;

int main(void) 
{ 
    printf("Tokens:\n");

    // Establish string and get the first token: 
    token = strtok_s(string, seps, &next_token);

    // While there are tokens in "string1" or "string2" 
    while (token != NULL) 
    { 
        // Get next token: 
        if (token != NULL) 
        { 
            printf(" %s\n", token); 
            token = strtok_s(NULL, seps, &next_token); 
        } 
    } 
    printf("the rest token1:\n"); 
    printf("%d", token); 
}
View Code

 

字符串分割strtok_s

标签:std   src   fir   first   一个   ide   安全   img   第一个   

原文地址:https://www.cnblogs.com/wllwqdeai/p/10291629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!