operator<<(std::sub_match)
From cppreference.com
template< class CharT, class Traits, class BidirIt >
std::basic_ostream<CharT,Traits>& |
(since C++11) | |
Writes the representation of the matched subsequence m
to the output stream os
.
Equivalent to os << m.str().
[edit] Parameters
os | - | output stream to write the representation to |
m | - | a sub-match object to output |
[edit] Return value
os
.
[edit] Example
This section is incomplete Reason: no example |