命名空间
变体
操作

std::basic_string_view<CharT,Traits>::find_last_not_of

来自 cppreference.cn
 
 
 
 
constexpr size_type
    find_last_not_of( basic_string_view v, size_type pos = npos ) const noexcept;
(1) (C++17 起)
constexpr size_type
    find_last_not_of( CharT ch, size_type pos = npos ) const noexcept;
(2) (C++17 起)
constexpr size_type
    find_last_not_of( const CharT* s, size_type pos, size_type count ) const;
(3) (C++17 起)
constexpr size_type
    find_last_not_of( const CharT* s, size_type pos = npos ) const;
(4) (C++17 起)

查找最后一个不等于给定字符序列中任何字符的字符。搜索仅考虑区间 [0pos]

1) 在此视图中,从位置 pos 开始,查找最后一个不等于 v 中任何字符的字符。
2) 等价于 find_last_not_of(basic_string_view(std::addressof(ch), 1), pos)
3) 等价于 find_last_not_of(basic_string_view(s, count), pos)
4) 等价于 find_last_not_of(basic_string_view(s), pos)

目录

[编辑] 参数

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

[编辑] 返回值

最后一个不等于给定字符串中任何字符的字符的位置,如果没有找到这样的字符,则返回 npos

[编辑] 复杂度

最坏情况下为 O(size() * v.size())。

[编辑] 示例

#include <string_view>
using std::operator""sv;
 
int main()
{
    static_assert(1 == "BCDEF"sv.find_last_not_of("DEF"));
                    //   ^
    static_assert(2 == "BCDEFG"sv.find_last_not_of("EFG", 3));
                    //    ^
    static_assert(2 == "ABBA"sv.find_last_not_of('A'));
                    //    ^
    static_assert(1 == "ABBA"sv.find_last_not_of('A', 1));
                    //   ^
}

[编辑] 参阅

在视图中查找字符
(公共成员函数) [编辑]
查找子串的最后一次出现
(公共成员函数) [编辑]
查找字符的首次出现
(公共成员函数) [编辑]
查找字符的最后一次出现
(公共成员函数) [编辑]
查找字符的首次缺席
(公共成员函数) [编辑]
查找字符的最后一次缺席
(std::basic_string<CharT,Traits,Allocator> 的公共成员函数) [编辑]