在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;
}
在上面的示例中,我們首先定義了一個字符串str
和一個子串subStr
,然后使用find
方法查找子串在字符串中的位置,并將結果存儲在found
變量中。最后通過判斷found
是否等于std::string::npos
來判斷是否找到了子串。