在C++中,可以使用std::string
類的find()
方法來查找子字符串。具體示例如下:
#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 << "子字符串在位置 " << found << " 處找到" << std::endl;
} else {
std::cout << "未找到子字符串" << std::endl;
}
return 0;
}
在上面的示例中,我們首先定義了一個(gè)字符串str
和一個(gè)子字符串subStr
。然后使用find()
方法在字符串str
中查找子字符串subStr
的位置,并將返回值存儲(chǔ)在found
變量中。如果find()
方法找到了子字符串,則返回子字符串在原字符串中的位置,否則返回std::string::npos
。最后根據(jù)返回值輸出相應(yīng)的結(jié)果。