std::regex_iterator::operator*,operator->
来自cppreference.com
< cpp | regex | regex iterator
const value_type& operator*() const; |
(1) | (C++11 起) |
const value_type* operator->() const; |
(2) | (C++11 起) |
从 regex_iterator
提取当前 std::match_results :
1) 返回到当前 std::match_results 的引用。
2) 返回指向当前 std::match_results 的指针。
[编辑] 示例
本节未完成 原因:暂无示例 |