std::basic_string<CharT,Traits,Allocator>::ends_with
来自cppreference.com
< cpp | string | basic string
constexpr bool ends_with( std::basic_string_view<CharT, Traits> sv ) const noexcept; |
(1) | (C++20 起) |
constexpr bool ends_with( CharT ch ) const noexcept; |
(2) | (C++20 起) |
constexpr bool ends_with( const CharT* s ) const; |
(3) | (C++20 起) |
检查字符串是否终于给定后缀。后缀可为以下之一:
1) 字符串视图 sv(可以是从另一
std::basic_string
隐式转换的结果)。2) 单个字符 c。
3) 空终止字符串 s。
所有三个重载都相当于返回 std::basic_string_view<CharT, Traits>(data(), size()).ends_with(x),其中 x
是形参。
参数
sv | - | 字符串视图,可为从另一 std::basic_string 隐式转换的结果
|
c | - | 单个字符 |
s | - | 空终止字符串 |
返回值
若字符串终于给定后缀则为 true,否则为 false。
注解
功能特性测试宏 | 值 | 标准 | 功能特性 |
---|---|---|---|
__cpp_lib_starts_ends_with |
201711L | (C++20) | 字符串前缀与后缀检查:starts_with() 和 ends_with() |
示例
运行此代码
#include <cassert> #include <string> #include <string_view> int main() { using namespace std::literals; const auto str = "Hello, C++20!"s; assert ("" && str.ends_with("C++20!"sv) // (1) && !str.ends_with("c++20!"sv) // (1) && str.ends_with("C++20!"s) // (1) 隐式转换 string 为 string_view && !str.ends_with("c++20!"s) // (1) 隐式转换 string 为 string_view && str.ends_with('!') // (2) && !str.ends_with('?') // (2) && str.ends_with("C++20!") // (3) && !str.ends_with("c++20!") // (3) ); }
参阅
(C++20) |
检查字符串是否始于给定前缀 (公开成员函数) |
(C++20) |
检查字符串视图是否始于给定前缀 ( std::basic_string_view<CharT,Traits> 的公开成员函数) |
(C++20) |
检查字符串视图是否终于给定后缀 ( std::basic_string_view<CharT,Traits> 的公开成员函数) |
(C++23) |
检查字符串是否含有给定的子串或字符 (公开成员函数) |
(C++23) |
检查字符串视图是否含有给定的子串或字符 ( std::basic_string_view<CharT,Traits> 的公开成员函数) |
比较两个字符串 (公开成员函数) | |
返回子串 (公开成员函数) |