Compartilhar via


operador << <regex>

Insere um sub_match em um fluxo.

template<class Elem, class IOtraits, class Alloc, class BidIt>
    basic_ostream<Elem, IOtraits>&
    operator<<(basic_ostream<Elem, IOtraits>& os,
        const sub_match<BidIt>& right);

Parâmetros

  • Elem
    O tipo de elemento.

  • IOtraits
    A classe de características de seqüência de caracteres.

  • Alloc
    A classe do alocador.

  • BidIt
    O tipo de iterador.

  • os
    O fluxo de saída.

  • right
    O objeto para inserir.

Comentários

O operador de modelo retorna os << right.str().

Exemplo

 

// std_tr1__regex__operator_ins.cpp 
// compile with: /EHsc 
#include <regex> 
#include <iostream> 
 
int main() 
    { 
    std::tr1::regex rx("c(a*)|(b)"); 
    std::tr1::cmatch mr; 
 
    std::tr1::regex_search("xcaaay", mr, rx); 
 
    std::tr1::csub_match sub = mr[0]; 
    std::cout << "whole match: " << sub << std::endl; 
 
    return (0); 
    } 
 
whole match: caaa

Requisitos

Cabeçalho:<regex>

Namespace: std::tr1

Consulte também

Referência

<regex>

Classe sub_match