C语言strstr和strtok函数怎么使用

1189
2023/7/30 15:24:16
栏目: 编程语言
开发者测试专用服务器限时活动,0元免费领,库存有限,领完即止! 点击查看>>

C语言的strstr函数用于在一个字符串中查找另一个字符串的第一次出现位置。它的使用方法如下:

#include <stdio.h>
#include <string.h>
int main() {
char str[] = "This is a test string";
char *result;
result = strstr(str, "test");
if(result == NULL) {
printf("Substring not found\n");
}
else {
printf("Substring found at index %ld\n", result - str);
}
return 0;
}

输出结果为:Substring found at index 10,表示在字符串str中找到了子字符串"test",其起始位置为索引10。

C语言的strtok函数用于将一个字符串分割成一系列子字符串。它的使用方法如下:

#include <stdio.h>
#include <string.h>
int main() {
char str[] = "This is a test string";
char *token;
token = strtok(str, " ");
while(token != NULL) {
printf("%s\n", token);
token = strtok(NULL, " ");
}
return 0;
}

输出结果为:

This

is

a

test

string

这个例子将字符串str按照空格进行分割,并逐个打印出每个子字符串。

辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>

推荐阅读: c语言如何把字母变成ascii码