在C++中,可以使用find
函數來判斷一個字符串是否包含另一個字符串。find
函數返回被查找的字符串在主字符串中第一次出現的位置,如果找不到,則返回string::npos
。
示例代碼如下:
#include <iostream>
#include <string>
int main() {
std::string str = "Hello, World!";
std::string substr = "Hello";
if (str.find(substr) != std::string::npos) {
std::cout << "字符串包含子字符串" << std::endl;
} else {
std::cout << "字符串不包含子字符串" << std::endl;
}
return 0;
}
在這個示例中,我們判斷了字符串str
是否包含子字符串substr
,如果包含則輸出字符串包含子字符串
,否則輸出字符串不包含子字符串
。