std::match_results<BidirIt,Alloc>::begin, std::match_results<BidirIt,Alloc>::cbegin
From 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以降) | |
サブマッチのリストの先頭へのイテレータを返します。マッチが成功した場合、イテレータはマッチした式全体を指します。
目次 |
[編集] パラメータ
(なし)
[編集] 戻り値
最初のサブマッチへのイテレータ。
[編集] 複雑性
定数。
[編集] 関連項目
| サブマッチのリストの末尾へのイテレータを返します。 (public member function) |