std::basic_string_view<CharT,Traits>::ends_with
来自cppreference.com
< cpp | string | basic string view
constexpr bool ends_with(std::basic_string_view x) const noexcept; |
(1) | (C++20 起) |
constexpr bool ends_with(CharT x) const noexcept; |
(2) | (C++20 起) |
constexpr bool ends_with(const CharT* x) const; |
(3) | (C++20 起) |
检查 string_view 是否终于给定后缀,其中
1) 后缀为 string_view 。等效地返回 size() >= x.size() && compare(size() - x.size(), npos, x) == 0
2) 后缀为单个字符。等效地返回 !empty() && Traits::eq(back(), x)
3) 后缀为 C 风格字符串。等效地返回 ends_with(basic_string_view(x))
参数
x | - | 要与 string_view 末尾比较的字符序列或单个字符 |
返回值
若 string_view 终于给定后缀则为 true ,否则为 false 。
示例
本节未完成 原因:暂无示例 |
参阅
(C++20) |
检查 string_view 是否始于给定前缀 (公开成员函数) |
(C++20) |
检查 string 是否始于给定前缀 ( std::basic_string<CharT,Traits,Allocator> 的公开成员函数) |
(C++20) |
检查 string 是否终于给定后缀 ( std::basic_string<CharT,Traits,Allocator> 的公开成员函数) |
比较二个视图 (公开成员函数) |