operator<< <regex>
Vloží sub_match v proudu.
template<class Elem, class IOtraits, class Alloc, class BidIt>
basic_ostream<Elem, IOtraits>&
operator<<(basic_ostream<Elem, IOtraits>& os,
const sub_match<BidIt>& right);
Parametry
Elem
Typ prvku.IOtraits
Třída string vlastnosti.Alloc
Třída přidělování.BidIt
Typ iterátoru.os
Výstupní datový proudright
Objekt, který má být vložen.
Poznámky
Vrátí operátor šablona os << right.str().
Příklad
// std_tr1__regex__operator_ins.cpp
// compile with: /EHsc
#include <regex>
#include <iostream>
int main()
{
std::regex rx("c(a*)|(b)");
std::cmatch mr;
std::regex_search("xcaaay", mr, rx);
std::csub_match sub = mr[0];
std::cout << "whole match: " << sub << std::endl;
return (0);
}
Požadavky
Záhlaví:<regex>
Obor názvů: std