std::basic_string_view<CharT,Traits>::remove_suffix
来自 cppreference.com
< cpp | string | basic string view
constexpr void remove_suffix( size_type n ); |
(自 C++17 起) | |
将视图的末尾向后移动 n 个字符。
如果 n > size(),则行为未定义。
内容 |
[编辑] 参数
n | - | 要从视图末尾移除的字符数 |
[编辑] 返回值
(无)
[编辑] 复杂度
恒定。
[编辑] 示例
运行此代码
#include <iostream> #include <string_view> int main() { char arr[] = {'a', 'b', 'c', 'd', '\0', '\0', '\0'}; std::string_view v(arr, sizeof arr); auto trim_pos = v.find('\0'); if (trim_pos != v.npos) v.remove_suffix(v.size() - trim_pos); std::cout << "Array: '" << arr << "', size=" << sizeof arr << '\n' << "View : '" << v << "', size=" << v.size() << '\n'; }
输出
Array: 'abcd', size=7 View : 'abcd', size=4
[编辑] 参见
通过向前移动其起点来缩小视图 (公共成员函数) |