在C++中,strstr
函數用于在一個字符串中搜索指定子字符串的位置。其原型如下:
char* strstr(const char* str1, const char* str2);
其中,str1
是要搜索的字符串,str2
是要查找的子字符串。strstr
函數會返回指向第一次出現str2
的位置的指針,如果找不到則返回nullptr
。
示例代碼:
#include <iostream>
#include <cstring>
int main() {
const char* str1 = "Hello, world!";
const char* str2 = "world";
char* result = strstr(str1, str2);
if (result) {
std::cout << "Found at position: " << result - str1 << std::endl;
} else {
std::cout << "Not found" << std::endl;
}
return 0;
}
輸出結果為:
Found at position: 7