std::basic_string_view<CharT,Traits>::find
来自 cppreference.com
< cpp | string | basic string view
constexpr size_type find( basic_string_view v, size_type pos = 0 ) const noexcept; |
(1) | (自 C++17 起) |
constexpr size_type find( CharT ch, size_type pos = 0 ) const noexcept; |
(2) | (自 C++17 起) |
constexpr size_type find( const CharT* s, size_type pos, size_type count ) const; |
(3) | (自 C++17 起) |
constexpr size_type find( const CharT* s, size_type pos = 0 ) const; |
(4) | (自 C++17 起) |
查找第一个等于给定字符序列的子字符串。
1) 在此视图中查找第一个出现 v 的位置,从位置 pos 开始。
2) 等同于 find(basic_string_view(std::addressof(ch), 1), pos).
3) 等同于 find(basic_string_view(s, count), pos).
4) 等同于 find(basic_string_view(s), pos).
内容 |
[编辑] 参数
v | - | 要查找的视图 |
pos | - | 开始查找的位置 |
count | - | 要查找的子字符串的长度 |
s | - | 指向要查找的字符字符串的指针 |
ch | - | 要查找的字符 |
[编辑] 返回值
找到的子字符串的第一个字符的位置,如果未找到这样的子字符串,则为 npos。
[编辑] 复杂度
[编辑] 示例
运行此代码
#include <string_view> int main() { using namespace std::literals; constexpr auto str{" long long int;"sv}; static_assert( 1 == str.find("long"sv) && "<- find(v , pos = 0)" && 6 == str.find("long"sv, 2) && "<- find(v , pos = 2)" && 0 == str.find(' ') && "<- find(ch, pos = 0)" && 2 == str.find('o', 1) && "<- find(ch, pos = 1)" && 2 == str.find("on") && "<- find(s , pos = 0)" && 6 == str.find("long double", 5, 4) && "<- find(s , pos = 5, count = 4)" ); static_assert(str.npos == str.find("float")); }
[编辑] 另请参阅
查找子字符串的最后一次出现 (公共成员函数) | |
查找字符的第一次出现 (公共成员函数) | |
查找字符的最后一次出现 (公共成员函数) | |
查找字符的第一次缺失 (公共成员函数) | |
查找字符的最后一次缺失 (公共成员函数) | |
查找给定子字符串的第一次出现 ( std::basic_string<CharT,Traits,Allocator> 的公共成员函数) |