在C语言中,可以使用strstr()函数来在一个字符串中查找另一个字符串。该函数的原型为:
char *strstr(const char *haystack, const char *needle);
其中,haystack是要查找的字符串,needle是要查找的子字符串。该函数返回子字符串在字符串中的第一个匹配位置的指针,如果未找到则返回NULL。
下面是一个示例代码:
#include <stdio.h>
#include <string.h>
int main() {
char str1[] = "Hello, world!";
char str2[] = "world";
char *ptr = strstr(str1, str2);
if (ptr) {
printf("'%s' found at position %ld\n", str2, ptr - str1);
} else {
printf("'%s' not found\n", str2);
}
return 0;
}
运行结果为:
'world' found at position 7
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c语言如何单步调试程序