在C++中,strstr
函數用于在一個字符串中查找子字符串,并返回第一次匹配的子字符串的指針。其函數原型如下所示:
char *strstr(const char *haystack, const char *needle);
其中,haystack
是要查找的字符串,needle
是要查找的子字符串。如果找到了子字符串,則返回指向第一次出現子字符串的位置的指針;如果沒有找到,則返回nullptr
。
使用strstr
函數的示例代碼如下所示:
#include <iostream>
#include <cstring>
int main() {
const char *str = "Hello, World!";
const char *subStr = "World";
char *result = strstr(str, subStr);
if (result != nullptr) {
std::cout << "Sub string found at position: " << result - str << std::endl;
} else {
std::cout << "Sub string not found" << std::endl;
}
return 0;
}
在上面的示例中,我們先定義一個字符串str
和一個子字符串subStr
,然后使用strstr
函數在str
中查找subStr
。如果找到了子字符串,則打印出子字符串在原字符串中的位置;如果沒有找到,則打印出"Sub string not found"。