std::basic_string<CharT,Traits,Allocator>::rfind
来自cppreference.com
< cpp | string | basic string
(1) | ||
size_type rfind( const basic_string& str, size_type pos = npos ) const; |
(C++11 前) | |
size_type rfind( const basic_string& str, size_type pos = npos ) const noexcept; |
(C++11 起) (C++20 前) |
|
constexpr size_type rfind( const basic_string& str, size_type pos = npos ) const noexcept; |
(C++20 起) | |
(2) | ||
size_type rfind( const CharT* s, size_type pos, size_type count ) const; |
(C++20 前) | |
constexpr size_type rfind( const CharT* s, size_type pos, size_type count ) const; |
(C++20 起) | |
(3) | ||
size_type rfind( const CharT* s, size_type pos = npos ) const; |
(C++20 前) | |
constexpr size_type rfind( const CharT* s, size_type pos = npos ) const; |
(C++20 起) | |
(4) | ||
size_type rfind( CharT ch, size_type pos = npos ) const; |
(C++11 前) | |
size_type rfind( CharT ch, size_type pos = npos ) const noexcept; |
(C++11 起) (C++20 前) |
|
constexpr size_type rfind( CharT ch, size_type pos = npos ) const noexcept; |
(C++20 起) | |
(5) | ||
template< class StringViewLike > size_type rfind( const StringViewLike& t, |
(C++17 起) (C++20 前) |
|
template< class StringViewLike > constexpr size_type rfind( const StringViewLike& t, |
(C++20 起) | |
寻找最后一个等于给定字符序列的子串。搜索从 pos 开始,也就是说找到的子串不会从 pos 之前的位置开始。如果将 npos 或任何不小于 size() - 1 的值作为 pos 传递,那么就会在整个字符串中搜索。
1) 寻找最后一个等于 str 的子串。
2) 寻找最后一个等于范围
[
s,
s + count)
的子串。此范围可以包含空字符。3) 寻找最后一个等于 s 所指向的字符串的子串。该字符串的长度由首个空字符,通过 Traits::length(s) 确定。
4) 寻找最后一个等于 ch 的字符。
此重载只有在 std::is_convertible_v<const StringViewLike&,
std::basic_string_view<CharT, Traits>> 是 true 且 std::is_convertible_v<const StringViewLike&, const CharT*> 是 false 时才会参与重载决议。
std::basic_string_view<CharT, Traits>> 是 true 且 std::is_convertible_v<const StringViewLike&, const CharT*> 是 false 时才会参与重载决议。
所有情况下均调用 Traits::eq 检查相等性。
参数
str | - | 要搜索的字符串 |
pos | - | 开始搜索的位置 |
count | - | 要搜索的子串长度 |
s | - | 指向要搜索的字符串的指针 |
ch | - | 要搜索的字符 |
t | - | 要搜索的对象(可转换到 std::basic_string_view ) |
返回值
找到的子串的首字符位置,或者在找不到这种子串则时返回 npos。注意这是从字符串开始,而非末尾的偏移。
如果搜索的是空字符串(str.size(),count 或 Traits::length(s) 为零),那么立即找到空字符串并返回:
- pos,如果 pos < size();
- 否则是 size(),包括 pos == npos 的情况。
异常
1,4) 不抛出。
5)
noexcept 说明:
noexcept(std::is_nothrow_convertible_v<const T&, std::basic_string_view<CharT, Traits>>)
如果因为任何原因抛出了异常,那么此函数无效果(强异常安全保证)。
示例
运行此代码
#include <iomanip> #include <iostream> #include <string> void print(std::string::size_type n, std::string::size_type len, std::string const &s) { if (n == std::string::npos) std::cout << "没有找到\n"; else std::cout << "在位置 " << n << " 找到了 " << std::quoted(s.substr(n, len)) << '\n'; } int main() { std::string::size_type n; std::string const s = "This is a string"; // 从字符串尾反向搜索 n = s.rfind("is"); print(n, 2, s); // 从位置 4 反向搜索 n = s.rfind("is", 4); print(n, 2, s); // 寻找单个字符 n = s.rfind('s'); print(n, 1, s); // 寻找单个字符 n = s.rfind('q'); print(n, 1, s); // 寻找前缀(参见 s.starts_with("This")) n = s.rfind("This", 0); print(n, 4, s); }
输出:
在位置 5 找到了 "is" 在位置 2 找到了 "is" 在位置 10 找到了 "s" 没有找到 在位置 0 找到了 "This"
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 847 | C++98 | 没有异常安全保证 | 添加强异常安全保证 |
LWG 2064 | C++11 | 重载 (3,4) 是 noexcept 的 | 移除 |
LWG 2946 | C++17 | 重载 (5) 在某些情况下会导致歧义 | 通过使之为模板来避免 |
P1148R0 | C++11 C++17 |
重载 (4,5) 的 noexcept 意外地被 LWG2064/LWG2946 丢弃 | 恢复 |
参阅
于字符串中寻找字符 (公开成员函数) | |
寻找字符的首次出现 (公开成员函数) | |
寻找字符的首次缺失 (公开成员函数) | |
寻找字符的最后一次出现 (公开成员函数) | |
寻找字符的最后一次缺失 (公开成员函数) |