std::match_results<BidirIt,Alloc>::begin, std::match_results<BidirIt,Alloc>::cbegin
来自cppreference.com
                    
                                        
                    < cpp | regex | match results
                    
                                                            
                    |   iterator begin() noexcept;  | 
(C++11 起) | |
|   const_iterator begin() const noexcept;  | 
(C++11 起) | |
|   const_iterator cbegin() const noexcept;  | 
(C++11 起) | |
返回指向子匹配列表开始的迭代器。若匹配成功,则迭代器将指向整个匹配的表达式。
参数
(无)
返回值
指向首个子匹配的迭代器。
复杂度
常数
参阅
|   返回指向子匹配列表末尾的迭代器  (公开成员函数)  |