C++string.find_last_of
时间: 2024-11-06 12:18:41 浏览: 7
C++ `std::string` 类型有一个成员函数叫做 `find_last_of()`,它的作用是在给定字符串中查找原始字符串中最后一个出现的指定字符或一组字符。这个函数返回的是找到的第一个匹配字符的索引位置,如果找不到匹配的字符,则返回 `npos`(通常表示字符串长度)。
函数原型一般如下:
```cpp
size_t find_last_of(const string& str) const;
size_t find_last_of(char c) const;
size_t find_last_of(char c, size_t pos = npos) const;
```
其中:
- 第一个版本接受一个字符串作为参数,并在其中查找所有字符直到找到最后一个。
- 第二个版本接受单个字符 `c`,只查找该字符。
- 第三个版本是在从指定位置 `pos` 开始查找,如果省略 `pos` 参数,默认从字符串末尾开始查找。
例如:
```cpp
std::string str = "Hello, World!";
size_t index = str.find_last_of(", "); // 返回12,因为逗号和空格分别是倒数第二个和最后一个字符
```
相关问题
find_last_of
find_last_of是C++中string类的一个成员函数,用于查找字符串中最后一个匹配某个字符的位置。它的语法为string.find_last_of(char c, size_t pos),其中c是要查找的字符,pos是从哪个位置开始查找。如果找到了匹配的字符,则返回该字符在字符串中的位置,否则返回string::npos。需要注意的是,find_last_of只能查找单个字符,不能查找字符串。
Find_last_of
`find_last_of` 是一个字符串成员函数,可以在字符串中搜索给定字符集中的任何一个字符,并返回最后一个匹配字符的位置。如果未找到匹配字符,则返回 `std::string::npos`。
以下是示例代码:
```c++
#include <iostream>
#include <string>
int main() {
std::string str = "Hello world!";
char ch = 'o';
size_t pos = str.find_last_of(ch);
if (pos != std::string::npos) {
std::cout << "The last position of '" << ch << "' in \"" << str << "\" is " << pos << std::endl;
} else {
std::cout << "No match found for '" << ch << "' in \"" << str << "\"" << std::endl;
}
return 0;
}
```
输出:
```
The last position of 'o' in "Hello world!" is 7
```
阅读全文