std::basic_string_view<CharT,Traits>::find_last_of
来自 cppreference.com
< cpp | string | basic string view
constexpr size_type find_last_of( basic_string_view v, size_type pos = npos ) const noexcept; |
(1) | (自 C++17) |
constexpr size_type find_last_of( CharT ch, size_type pos = npos ) const noexcept; |
(2) | (自 C++17) |
constexpr size_type find_last_of( const CharT* s, size_type pos, size_type count ) const; |
(3) | (自 C++17) |
constexpr size_type find_last_of( const CharT* s, size_type pos = npos ) const; |
(4) | (自 C++17) |
查找给定字符序列中最后一个等于其中一个字符的字符。未指定确切的搜索算法。搜索仅考虑区间 [
0,
pos]
。如果该字符不在区间内,则将返回 npos。
1) 在此视图中查找 v 的所有字符中最后一个出现的字符,结束于位置 pos。
2) 等效于 find_last_of(basic_string_view(std::addressof(ch), 1), pos).
3) 等效于 find_last_of(basic_string_view(s, count), pos).
4) 等效于 find_last_of(basic_string_view(s), pos).
内容 |
[编辑] 参数
v | - | 要搜索的视图 |
pos | - | 要结束搜索的位置 |
count | - | 要搜索的字符字符串的长度 |
s | - | 指向要搜索的字符字符串的指针 |
ch | - | 要搜索的字符 |
[编辑] 返回值
子字符串中任何字符的最后一个出现的位置,如果未找到此类字符,则为 npos。
[编辑] 复杂度
[编辑] 示例
运行此代码
#include <string_view> using namespace std::literals; constexpr auto N = std::string_view::npos; static_assert( 5 == "delete"sv.find_last_of("cdef"sv) && // └────────────────────┘ N == "double"sv.find_last_of("fghi"sv) && // 0 == "else"sv.find_last_of("bcde"sv, 2 /* pos [0..2]: "els" */) && // └────────────────────────┘ N == "explicit"sv.find_last_of("abcd"sv, 4 /* pos [0..4]: "expli" */) && // 3 == "extern"sv.find_last_of('e') && // └────────────────────┘ N == "false"sv.find_last_of('x') && // 0 == "inline"sv.find_last_of('i', 2 /* pos [0..2]: "inl" */) && // └───────────────────────┘ N == "mutable"sv.find_last_of('a', 2 /* pos [0..2]: "mut" */) && // 3 == "namespace"sv.find_last_of("cdef", 3 /* pos [0..3]: "name" */, 3 /* "cde" */) && // └─────────────────────────┘ N == "namespace"sv.find_last_of("cdef", 3 /* pos [0..3]: "name" */, 2 /* "cd" */) ); int main() {}
[编辑] 另请参见
在视图中查找字符 (公有成员函数) | |
查找子字符串的最后一次出现 (公有成员函数) | |
查找字符的第一次出现 (公有成员函数) | |
查找字符的第一次缺失 (公有成员函数) | |
查找字符的最后一次缺失 (公有成员函数) | |
查找字符的最后一次出现 ( std::basic_string<CharT,Traits,Allocator> 的公有成员函数) |