在C++中,string.find()
函數用于在字符串中搜索指定的子字符串,并返回第一次出現的位置索引。如果找到子字符串,則返回第一次出現的位置索引;如果未找到,則返回string::npos
。
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, world!";
std::string subStr = "world";
size_t found = str.find(subStr);
if (found != std::string::npos) {
std::cout << "Substring found at index: " << found << std::endl;
} else {
std::cout << "Substring not found" << std::endl;
}
return 0;
}
在上面的示例中,我們首先定義了一個字符串str
和一個子字符串subStr
。然后,我們使用string.find()
函數在字符串str
中搜索子字符串subStr
,并將結果存儲在變量found
中。最后,我們檢查found
的值,如果不等于string::npos
,則說明找到了子字符串,打印出子字符串在字符串中的位置索引;否則,打印出子字符串未找到的信息。