c++查找一个字符串中的子串
时间: 2024-03-31 13:05:24 浏览: 79
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) {
std::cout << "Substring found at position: " << found << std::endl;
} else {
std::cout << "Substring not found." << std::endl;
}
return 0;
}
```
在上面的代码中,我们定义了一个字符串 `str`,并在其中查找子串 `subStr`。使用 `find` 函数来查找子串,并返回它在主串中的位置。如果找到了子串,函数会返回子串在主串中的起始索引;如果找不到,则返回 `std::string::npos`。
阅读全文