在C语言中,可以使用字符串处理函数strstr来查找子串。该函数的原型为:
char *strstr(const char *haystack, const char *needle);
其中,haystack表示要在其中查找子串的字符串,needle表示要查找的子串。函数返回一个指向第一次出现子串的位置的指针,如果未找到则返回NULL。
以下是一个示例代码,演示如何在C中使用strstr函数查找子串:
#include <stdio.h>
#include <string.h>
int main() {
char str[] = "Hello, World!";
char subStr[] = "World";
char *result = strstr(str, subStr);
if (result) {
printf("子串 \"%s\" 在字符串 \"%s\" 中的位置是:%ld\n", subStr, str, result - str);
} else {
printf("未找到子串 \"%s\" 在字符串 \"%s\" 中\n", subStr, str);
}
return 0;
}
运行结果将输出:
子串 "World" 在字符串 "Hello, World!" 中的位置是:7