C++ 参考手册

位置:首页 > C++ 参考手册 >字符串库 >std::basic_string_view > std::basic_string_view<CharT,Traits>::substr

constexpr basic_string_view
    substr(size_type pos = 0, size_type count = npos ) const;
(C++17 起)

返回子串 [pos, pos + rcount) 的视图,其中 rcountcountsize() - pos 中较小者。

参数

pos - 首字符的位置
count - 请求的长度

返回值

子串 [pos, pos + rcount) 的视图。

异常

pos > size() 则抛出 std::out_of_range

复杂度

常数。

参阅

复制字符
(公开成员函数)
在视图中查找字符
(公开成员函数)