std::string 查找子字符串
时间: 2023-11-16 14:06:39 浏览: 247
在字符串中寻找子字符串
可以使用 std::string 的 find 函数来查找子字符串,示例代码如下:
```cpp
std::string str = "hello world";
std::string subStr = "world";
size_t pos = str.find(subStr);
if (pos != std::string::npos) {
std::cout << "子字符串在位置 " << pos << " 处" << std::endl;
} else {
std::cout << "未找到子字符串" << std::endl;
}
```
阅读全文