basic_regex(); // (1)
basic_regex(const basic_regex& that); // (2)
basic_regex(basic_regex&& that) noexcept; // (3)
explicit basic_regex(const charT* ptr,
flag_type f = regex_constants::ECMAScript); // (4)
basic_regex(const charT* ptr, size_t len, flag_type f); // (5)
template <class ST, class SA>
basic_regex(const basic_string<charT, ST, SA>& p,
flag_type f = regex_constants::ECMAScript); // (6)
template <class ForwardIterator>
basic_regex(ForwardIterator first, ForwardIterator last,
flag_type f = regex_constants::ECMAScript); // (7)
basic_regex(initializer_list<charT> il,
flag_type f = regex_constants::ECMAScript); // (8)
概要
正規表現オブジェクトを構築する。
要件
ptr
はヌルポインタではないこと。InputIterator
は入力イテレータの要件を満たすこと。
効果
- (1) デフォルトコンストラクタ。いかなる文字列にもマッチしない
basic_regex
オブジェクトを構築する。 - (2) コピーコンストラクタ。
that
をコピーしてbasic_regex
オブジェクトを構築する。 - (3) ムーブコンストラクタ。
that
をムーブしてbasic_regex
オブジェクトを構築する。 - (4) 引数
f
で指定されたフラグに従って、先頭がptr
で長さchar_traits::length(ptr)
の文字列からbasic_regex
オブジェクトを構築する。
指定された文字列が有効な正規表現で無い場合には、例外regex_error
を投げる。 - (5) 引数
f
で指定されたフラグに従って、先頭がptr
で長さlen
の文字列からbasic_regex
オブジェクトを構築する。
指定された文字列が有効な正規表現で無い場合には、例外regex_error
を投げる。 - (6) 引数
f
で指定されたフラグに従って、p
で指定された文字列からbasic_regex
オブジェクトを構築する。
文字列p
が有効な正規表現で無い場合には、例外regex_error
を投げる。 - (7) 引数
f
で指定されたフラグに従って、範囲[first, last)
で指定された文字列からbasic_regex
オブジェクトを構築する。
文字列[first, last)
が有効な正規表現で無い場合には、例外regex_error
を投げる。 - (8)
basic_regex(il.begin(), il.end(), f)
と等価。
事後条件
- (1) -
- (2)
flags()
とmark_count()
は、それぞれthat.flags()
とthat.mark_count
を返す。 - (3)
flags()
とmark_count()
は、それぞれthat.flags()
とthat.mark_count
の元の値を返す。
that
は未規定の有効な状態である。 - (4)
flags()
は引数f
を、mark_count()
は指定された正規表現内のキャプチャグループの数を返す。 - (5)
flags()
は引数f
を、mark_count()
は指定された正規表現内のキャプチャグループの数を返す。 - (6)
flags()
は引数f
を、mark_count()
は指定された正規表現内のキャプチャグループの数を返す。 - (7)
flags()
は引数f
を、mark_count()
は指定された正規表現内のキャプチャグループの数を返す。 - (8) -
備考
charT
はbasic_regex
の 1 番目のテンプレートパラメータで、文字型である。flag_type
はregex_constants::syntax_option_type
の別名である。
例
#include <iostream>
#include <regex>
#include <string>
int main()
{
const char s[] = " abc ";
std::cout << std::boolalpha;
const std::regex re1; // (1) の形式
std::cout << std::regex_search(s, re1) << std::endl;
std::regex re4("\\w+"); // (4) の形式
std::cout << std::regex_search(s, re4) << std::endl;
const std::regex re2(re4); // (2) の形式
std::cout << std::regex_search(s, re2) << std::endl;
const std::regex re3(std::move(re4)); // (3) の形式
std::cout << std::regex_search(s, re3) << std::endl;
const std::regex re5("ABC\\d+", 3, std::regex_constants::icase); // (5) の形式
std::cout << std::regex_search(s, re5) << std::endl;
const std::string restr("ABC");
const std::regex re6(restr, std::regex_constants::icase); // (6) の形式
std::cout << std::regex_search(s, re6) << std::endl;
const std::string p("[[:alpha:]]+");
const std::regex re7(std::begin(p), std::end(p)); // (7) の形式
std::cout << std::regex_search(s, re7) << std::endl;
const std::regex re8{ '\\', 'd', '+' }; // (8) の形式
std::cout << std::regex_search(s, re8) << std::endl;
}
出力
false
true
true
true
true
true
true
false
バージョン
言語
- C++11
処理系
- Clang: 3.0 ✅, 3.1 ✅, 3.2 ✅, 3.3 ✅, 3.4 ✅, 3.5 ✅, 3.6 ✅
- GCC: 4.9.0 ✅, 4.9.1 ✅, 4.9.2 ✅, 5.0.0 ✅
- ICC: ??
- Visual C++: ??
備考
Clang バージョン 3.0 は initializer_list
に対応していないため、(8) の形式は提供されていない。