operator<< <regex>
Bir sub_match bir akış ekler.
template<class Elem, class IOtraits, class Alloc, class BidIt>
basic_ostream<Elem, IOtraits>&
operator<<(basic_ostream<Elem, IOtraits>& os,
const sub_match<BidIt>& right);
Parametreler
Elem
Öğe türü.IOtraits
String nitelikler sınıfı.Alloc
Ayırıcı sınıf.BidIt
Yineleyici türü.os
Çıkış akışı.right
Eklemek için nesne.
Notlar
Şablon operatörü döndürür os << right.str().
Örnek
// 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);
}
Gereksinimler
Başlık: <regex>
Namespace: std