std::experimental::basic_string_view<CharT,Traits>::substr

来自cppreference.com
 
 
实验性
技术规范
文件系统库 (文件系统 TS)
库基础 (库基础 TS)
库基础 2 (库基础 TS v2)
库基础 3 (库基础 TS v3)
并行扩展 (并行 TS)
并行扩展 2 (并行 TS v2)
并发扩展 (并发 TS)
并发扩展 2 (并发 TS v2)
概念 (概念 TS)
范围 (范围 TS)
反射 (反射 TS)
数学特殊函数 (特殊函数 TR)
实验性非 TS 功能特性
模式匹配
线性代数
std::execution
契约
2D 图形
 
 
 
constexpr basic_string_view
    substr(size_type pos = 0, size_type count = npos ) const;

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

参数

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

返回值

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

异常

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

复杂度

常数。

参阅

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