Udostępnij za pośrednictwem


operator<< <regex>

Wstawia sub_match w strumieniu.

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 elementu.

  • IOtraits
    Cech klasy string.

  • Alloc
    Klasa przydzielania.

  • BidIt
    Typ iteratora.

  • os
    Strumienia wyjściowego.

  • right
    Aby wstawić obiekt.

Uwagi

Szablon operator zwraca os << right.str().

Przykład

 

// 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); 
    } 
 
  

Wymagania

Nagłówek: <regex>

Obszar nazw: std

Zobacz też

Informacje

<regex>

sub_match Class