std::regex_iterator::operator*,operator->
From cppreference.com
< cpp | regex | regex iterator
const value_type& operator*() const; |
(1) | (since C++11) |
const value_type* operator->() const; |
(2) | (since C++11) |
Extracts the current std::match_results from a regex_iterator
:
1) Returns a reference to the current std::match_results.
2) Returns a pointer to the current std::match_results.
Example
This section is incomplete Reason: no example |