string判断是否被包含
时间: 2023-09-30 22:03:42 浏览: 57
jsp 判断list是否包含string的实现方法
可以使用 `find` 函数来判断一个字符串是否被包含在另一个字符串中。如果被包含, `find` 函数会返回子串的起始位置,否则返回 `string::npos`。
示例代码:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str1 = "Hello, world!";
string str2 = "world";
if (str1.find(str2) != string::npos) {
cout << str2 << " is contained in " << str1 << endl;
} else {
cout << str2 << " is not contained in " << str1 << endl;
}
return 0;
}
```
输出结果:
```
world is contained in Hello, world!
```
阅读全文