namespace std {
template <class charT, class ST, class BiIter>
std::basic_ostream<charT, ST>& operator<<(
std::basic_ostream<charT, ST>& os,
const sub_match<BiIter>& m);
}
概要
ストリームへの出力を行う。
戻り値
備考
テンプレート引数は 3 つあるが、規格上は文字列の出力に使用している operator<<
が charT = iterator_traits<BiIter>::value_type
、かつ、ST = char_traits<charT>
のバージョンしか存在しない。
例
#include <iostream>
#include <regex>
#include <string>
int main()
{
const char ca[] = " abc ";
const std::regex re(R"(\w+)");
std::cmatch m;
if (std::regex_search(ca, m, re)) {
std::csub_match sub = m[0];
std::cout << '\'' << sub << '\'' << std::endl;
} else {
std::cout << "not match" << std::endl;
}
}
xxxxxxxxxx
#include <iostream>
#include <regex>
#include <string>
int main()
{
const char ca[] = " abc ";
const std::regex re(R"(\w+)");
std::cmatch m;
if (std::regex_search(ca, m, re)) {
std::csub_match sub = m[0];
std::cout << '\'' << sub << '\'' << std::endl;
} else {
std::cout << "not match" << std::endl;
}
}
出力
'abc'
バージョン
言語
- C++11
処理系
- Clang: 3.0 ✅, 3.1 ✅, 3.2 ✅, 3.3 ✅, 3.4 ✅, 3.5 ✅, 3.6 ✅
- GCC: 4.9.0 ✅, 4.9.1 ✅, 5.0.0 ✅
- ICC: ??
- Visual C++: ??