命名空间
变体
操作

operator<<(std::sub_match)

来自 cppreference.com
< cpp‎ | regex‎ | sub match
template< class CharT, class Traits, class BidirIt >

std::basic_ostream<CharT,Traits>&
    operator<<( std::basic_ostream<CharT,Traits>& os,

                const sub_match<BidirIt>& m );
(自 C++11 起)

将匹配的子序列 m 的表示形式写入输出流 os

等效于 os << m.str()

[编辑] 参数

os - 要写入表示形式的输出流
m - 要输出的子匹配对象

[编辑] 返回值

os

[编辑] 示例