std::match_results::begin, std::match_results::cbegin
来自cppreference.com
< cpp | regex | match results
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
iterator begin(); |
(C++11 起) | |
const_iterator begin() const; |
(C++11 起) | |
const_iterator cbegin() const; |
(C++11 起) | |
返回一个迭代子匹配的列表开始.
原文:
Returns an iterator to the beginning of the list of sub-matches.
目录 |
[编辑] 参数
(无)
[编辑] 返回值
迭代器的第一子如同.
[编辑] 例外
[编辑] 复杂度
常数
[编辑] 另请参阅
迭代器返回的列表的末尾的子匹配 原文: returns iterator to the end of the list of sub-matches (公共成员函数) |