在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
中的位置,否則打印出未找到的信息。