std::string 字符串查找从最后开始
时间: 2023-07-08 09:33:20 浏览: 60
你可以使用 std::string 类型的 rfind() 函数来从字符串的末尾开始查找子字符串。rfind() 函数返回子字符串在字符串中最后一次出现的位置,如果找不到则返回 std::string::npos。
下面是一个示例代码:
```c++
#include <iostream>
#include <string>
int main()
{
std::string str = "Hello, world!";
std::string sub_str = "l";
size_t found = str.rfind(sub_str);
if (found != std::string::npos)
{
std::cout << "Substring found at position: " << found << std::endl;
}
else
{
std::cout << "Substring not found." << std::endl;
}
return 0;
}
```
输出结果:
```
Substring found at position: 10
```
在上面的代码中,我们使用 rfind() 函数查找子字符串从末尾开始的位置。如果子字符串存在,则打印其位置,否则打印“Substring not found.”。
相关问题
std::string查找字符串
在C++标准库中,`std::string` 类型提供了一些内置函数来查找特定的子串。其中最常用的是 `find()` 和 `find_first_of()` 函数。
1. `find()` 函数:用于查找指定子串首次出现的位置。其原型是:
```cpp
size_t find(const char* str, size_t pos = 0) const;
```
或者
```cpp
size_t find(const string& substr, size_t pos = 0) const;
```
如果找到了子串,它会返回子串开始的位置(从0开始计数),如果没找到则返回 `npos`(通常为 `std::string::npos`,表示无效的位置)。
2. `find_first_of()` 函数:查找第一个出现的指定字符集合中的任何一个字符的位置。它的原型是:
```cpp
size_t find_first_of(const string& str, size_t pos = 0) const;
```
例如,假设我们有一个 `std::string` 对象 `str`,可以这样查找子串:
```cpp
size_t index = str.find("hello"); // 查找"hello"
if (index != std::string::npos) {
std::cout << "Substring found at position " << index << std::endl;
} else {
std::cout << "Substring not found" << std::endl;
}
```
std::string 查找字符串
您可以使用C++中的`std::string::find()`函数来查找一个字符串中是否包含另一个字符串。
例如,如果您想要查找字符串`str`是否包含子字符串`subStr`,您可以使用以下代码:
```cpp
std::string str = "Hello World";
std::string subStr = "World";
if (str.find(subStr) != std::string::npos) {
std::cout << "Substring found in the string!" << std::endl;
} else {
std::cout << "Substring not found in the string." << std::endl;
}
```
在上述代码中,`std::string::find()`函数返回子字符串`subStr`在`str`中的位置。如果子字符串不在字符串中,则返回`std::string::npos`。因此,我们可以检查返回值是否等于`std::string::npos`来判断是否找到了子字符串。
阅读全文