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