在C语言中,可以使用标准库函数strstr()
来查找一个字符串中是否包含另一个字符串。strstr()
函数的原型如下:
char *strstr(const char *haystack, const char *needle);
其中haystack
是要查找的字符串,needle
是要查找的子字符串。strstr()
函数会返回一个指向needle
在haystack
中第一次出现的位置的指针,如果没有找到,则返回NULL
。
下面是一个例子:
#include <stdio.h>
#include <string.h>
int main() {
const char *haystack = "Hello, World!";
const char *needle = "World";
char *result = strstr(haystack, needle);
if (result) {
printf("The substring was found at position %ld\n", result - haystack);
} else {
printf("The substring was not found\n");
}
return 0;
}
上述代码中,我们在haystack
中查找needle
字符串,如果找到,则打印出needle
字符串在haystack
中的位置,否则打印出未找到的信息。