std::experimental::basic_string_view<CharT,Traits>::remove_prefix
来自 cppreference.cn
< cpp | experimental | basic string view
constexpr void remove_prefix(size_type n); |
(库基础 TS) | |
将视图的起始位置向前移动 n
个字符。
如果 n > size(),则行为未定义。
目录 |
[编辑] 参数
n | - | 从视图起始位置移除的字符数 |
[编辑] 返回值
(无)
[编辑] 复杂度
常数时间。
[编辑] 示例
运行此代码
#include <iostream> #include <experimental/string_view> int main() { std::string str = " trim me"; std::experimental::string_view v = str; v.remove_prefix(std::min(v.find_first_not_of(" "), v.size())); std::cout << "String: '" << str << "'\n" << "View : '" << v << "'\n"; }
输出
String: ' trim me' View : 'trim me'
[编辑] 参阅
通过后移其末尾位置来收缩视图 (公共成员函数) |