std::experimental::basic_string_view<CharT,Traits>::find_first_not_of
来自 cppreference.com
< cpp | experimental | basic string view
constexpr size_type find_first_not_of(basic_string_view v, size_type pos = 0) const noexcept; |
(1) | (库基础 TS) |
constexpr size_type find_first_not_of(CharT c, size_type pos = 0) const noexcept; |
(2) | (库基础 TS) |
constexpr size_type find_first_not_of(const CharT* s, size_type pos, size_type count) const; |
(3) | (库基础 TS) |
constexpr size_type find_first_not_of(const CharT* s, size_type pos = 0) const; |
(4) | (库基础 TS) |
查找第一个不等于给定字符序列中任何字符的字符。
1) 从位置
pos
开始,查找此视图中第一个不等于 v
中任何字符的字符。2) 等效于 find_first_not_of(basic_string_view(&c, 1), pos).
3) 等效于 find_first_not_of(basic_string_view(s, count), pos).
4) 等效于 find_first_not_of(basic_string_view(s), pos).
内容 |
[编辑] 参数
v | - | 要搜索的视图 |
pos | - | 开始搜索的位置 |
count | - | 要比较的字符字符串的长度 |
s | - | 指向要比较的字符字符串的指针 |
ch | - | 要比较的字符 |
[编辑] 返回值
第一个不等于给定字符串中任何字符的字符的位置,如果未找到此类字符,则为 npos。
[编辑] 复杂度
最坏情况下为 O(size()
* v.size()
)。
[编辑] 另请参阅
在视图中查找字符 (公有成员函数) | |
查找子字符串的最后一次出现 (公有成员函数) | |
查找字符的第一次出现 (公有成员函数) | |
查找字符的最后一次出现 (公有成员函数) | |
查找字符的最后一次缺失 (公有成员函数) |