std::regex_iterator::operators

std::regex_iterator::operator*,operator->

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.