命名空间
变体
操作

std::match_results<BidirIt,Alloc>::begin, std::match_results<BidirIt,Alloc>::cbegin

来自 cppreference.com
< cpp‎ | regex‎ | 匹配结果
iterator begin() noexcept;
(自 C++11 起)
const_iterator begin() const noexcept;
(自 C++11 起)
const_iterator cbegin() const noexcept;
(自 C++11 起)

返回指向子匹配列表开头的迭代器。如果匹配成功,迭代器将指向整个匹配的表达式。

内容

[编辑] 参数

(无)

[编辑] 返回值

指向第一个子匹配的迭代器。

[编辑] 复杂度

常量。

[编辑] 另请参阅

返回指向子匹配列表末尾的迭代器
(公有成员函数) [编辑]