operator<<(std::sub_match) (3) - Linux Manuals
operator<<(std::sub_match): operator<<(std::sub_match)
NAME
operator<<(std::sub_match) - operator<<(std::sub_match)
Synopsis
template< class CharT, class Traits, class BidirIt >
std::basic_ostream<CharT,Traits>& (since C++11)
operator<<( std::basic_ostream<CharT,Traits>& os,
const sub_match<BidirIt>& m );
Writes the representation of the matched subsequence m to the output stream os.
Equivalent to os << m.str().
Parameters
os - output stream to write the representation to
m - a sub-match object to output
Return value
os.
Example
This section is incomplete
Reason: no example