C++ 字符串内是否包含某字符串
时间: 2023-09-24 20:03:33 浏览: 77
C++ 字符串去重排序实例代码
5星 · 资源好评率100%
可以使用 C++ 的字符串库函数 find 来判断是否包含某个字符串,如果返回值不是 string::npos 则表示包含。例如:
```
#include <iostream>
#include <string>
using namespace std;
int main() {
string s = "hello world";
string sub = "world";
if (s.find(sub) != string::npos) {
cout << "包含" << endl;
} else {
cout << "不包含" << endl;
}
return 0;
}
```
阅读全文