cpp查找字符串中指定字符串第一次出現的位置
时间: 2023-10-04 16:11:32 浏览: 244
查找指定字符串
5星 · 资源好评率100%
在C++中,你可以使用`std::string`的`find`函数来查找字符串中指定子字符串第一次出现的位置。下面是一个示例代码:
```cpp
#include <iostream>
#include <string>
int main() {
std::string str = "Hello World! Hello!";
std::string subStr = "Hello";
size_t found = str.find(subStr);
if (found != std::string::npos) {
std::cout << "第一次出现的位置: " << found << std::endl;
} else {
std::cout << "未找到子字符串" << std::endl;
}
return 0;
}
```
在上面的示例中,我们定义了一个字符串`str`,然后使用`find`函数来查找子字符串`subStr`第一次出现的位置。如果找到子字符串,`find`函数会返回子字符串在主字符串中的起始位置;如果未找到,`find`函数会返回`std::string::npos`。
阅读全文