strstr函數(shù)是用于在字符串中查找指定子字符串的函數(shù)。它的原型為:
char *strstr(const char *haystack, const char *needle);
其中,haystack是要在其中搜索的字符串,needle是要搜索的子字符串。
使用strstr函數(shù)的正確用法如下:
#include <iostream>
#include <cstring>
int main() {
const char *haystack = "Hello, world!";
const char *needle = "world";
char *result = strstr(haystack, needle);
if(result) {
std::cout << "Found at position: " << result - haystack << std::endl;
} else {
std::cout << "Not found" << std::endl;
}
return 0;
}
上面的代碼首先定義了兩個字符串haystack和needle,然后調(diào)用strstr函數(shù)在haystack中查找needle字符串。如果找到了,則打印出其位置;否則打印出"Not found"。