std::experimental::basic_string_view<CharT,Traits>::rfind

来自cppreference.com
 
 
实验性
技术规范
文件系统库 (文件系统 TS)
库基础 (库基础 TS)
库基础 2 (库基础 TS v2)
库基础 3 (库基础 TS v3)
并行扩展 (并行 TS)
并行扩展 2 (并行 TS v2)
并发扩展 (并发 TS)
并发扩展 2 (并发 TS v2)
概念 (概念 TS)
范围 (范围 TS)
反射 (反射 TS)
数学特殊函数 (特殊函数 TR)
实验性非 TS 功能特性
模式匹配
线性代数
std::execution
契约
2D 图形
 
 
 
constexpr size_type rfind(basic_string_view v, size_type pos = npos) const noexcept;
(1) (库基础 TS)
constexpr size_type rfind(CharT c, size_type pos = npos) const noexcept;
(2) (库基础 TS)
constexpr size_type rfind(const CharT* s, size_type pos, size_type count) const;
(3) (库基础 TS)
constexpr size_type rfind(const CharT* s, size_type pos = npos) const;
(4) (库基础 TS)

查找最后一个等于给定字符序列的子字符串。

1) 查找此视图中最后出现的 v,从位置 pos 开始。
2) 等价于 rfind(basic_string_view(&c, 1), pos)
3) 等价于 rfind(basic_string_view(s, count), pos)
4) 等价于 rfind(basic_string_view(s), pos)

参数

v - 要搜索的视图
pos - 从之开始搜索的位置
count - 要搜索的字符串的长度
s - 指向要搜索字符串的指针
ch - 要搜索的字符


返回值

搜早点的子字符串的首个字符的位置,或当未找到这种子字符串时为 npos

复杂度

最差为 O(size() * v.size())。

参阅

在视图中查找字符
(公开成员函数)
检查首个出现的字符
(公开成员函数)
返回最末出现的字符
(公开成员函数)
查找首个未出现字符
(公开成员函数)
查找最末未出现字符
(公开成员函数)