std::experimental::basic_string_view<CharT,Traits>::remove_prefix
来自 cppreference.com
< 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'
[编辑] 另请参阅
通过向后移动其末尾来缩小视图 (公共成员函数) |