c++字符串查找子串
时间: 2023-10-18 09:56:56 浏览: 95
c 查找字符串
在C++中,你可以使用`find`函数来查找子串。以下是一个简单的示例代码:
```cpp
#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
阅读全文