赞
踩
目录
Find the next token in a string.
即查找字符串中的下一个标记.
就是将一个字符串分割成一系列的子串.
char *strtok( char * strToken, const char * strDelimit );
strToken: 要分割的字符串.
strDelimite: 其中包含了一系列的分隔符.
All of these functions return a pointer to the next token found in strToken. They return NULL when no more tokens are found. Each call modifies strToken by substituting a NULL character for each delimiter that is encountered.
所有这些函数都返回指向 strToken 中找到的下一个令牌的指针。当找不到更多令牌时,它们将返回 NULL。
需要引用头文件 string.h
每次使用strtok函数都会将strToken中的分隔符替换成为 '\0'(字符串的结束标志).
- #include<stdio.h>
- #include<string.h>
- int main()
- {
- //使用strtok函数
- //根据 map字符串中的内容,分割字符串str,返回值是分隔符后的字符的地址
- //strtok函数会把需要分割的字符赋值为 '\0'
- //char* strtok(char* str, const char* map);
-
- char str[1000] = { 0 };
- int i = 0;
- while (1)
- {
- scanf("%c", &str[i]);
- if (str[i] == '.')//输入'.'退出输入
- break;
- i++;
- }
- const char map[] = " .";//根据 map中的内容来分割字符串 str
- const char* ret = NULL;//接受首字符的地址
- int arr[1000] = { 0 };
- i = 0;
- //如果分割完毕,就返回空指针 NULL
- //从第二次分割开始,就不需要再传入起始地址了,strtok函数会自动记录分隔符后的字符的地址
- for (ret = strtok(str, map); ret != NULL; ret = strtok(NULL,map))
- {
- arr[i++] = strlen(ret);
- }
- //输出
- for (int j = 0; j < i; j++)
- {
- if (j == i - 1)
- {
- printf("%d", arr[j]);
- return 0;
- }
- printf("%d ",arr[j]);
- }
- return 0;
- }
1,strtok字符串分割函数是用来分割字符串的,会根据指定的内容来分割字符串,并将分隔符替换为'\0'(是会改变原来的字符串的,因此最好传入的是要分割的字符串的拷贝体),如果分割完毕,就会返回NULL空指针.
2,从第二次分割(第二次调用strtok函数)开始,就不需要再传入起始地址了,strtok函数会自动记录分隔符后的字符的地址.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。