operator<<(std::sub_match)
来自 cppreference.cn
template< class CharT, class Traits, class BidirIt > std::basic_ostream<CharT,Traits>& |
(since C++11) | |
将匹配的子序列 m 的表示形式写入到输出流 os。等效于 os << m.str()。
[edit] 参数
os | - | 要将表示形式写入的输出流 |
m | - | 要输出的 sub-match 对象 |
[edit] 返回值
os
[edit] 示例
运行此代码
#include <iostream> #include <regex> #include <string> int main() { std::string sentence{"Quick red fox jumped over a lazy hare."}; const std::regex re{"([A-z]+) ([a-z]+) ([a-z]+)"}; std::smatch words; std::regex_search(sentence, words, re); for (const auto& m : words) // m has type `const std::sub_match<std::string::const_iterator>&` std::cout << '[' << m << "] "; std::cout << '\n'; }
输出
[Quick red fox] [Quick] [red] [fox]