The Wayback Machine - https://web.archive.org/web/20171022125926/http://ja.cppreference.com/w/cpp/regex/basic_regex/constants
名前空間
変種
操作

std::basic_regex constants

提供: cppreference.com
< cpp‎ | regex‎ | basic regex

 
 
正規表現ライブラリ
クラス
Original:
Classes
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex(C++11)
sub_match(C++11)
match_results(C++11)
アルゴリズム
Original:
Algorithms
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_match(C++11)
regex_search(C++11)
regex_replace(C++11)
イテレータ
Original:
Iterators
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_iterator(C++11)
regex_token_iterator(C++11)
例外
Original:
Exceptions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_error(C++11)
形質
Original:
Traits
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
regex_traits(C++11)
定数
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
syntax_option_type(C++11)
match_flag_type(C++11)
error_type(C++11)
 
std::basic_regex
メンバー関数
Original:
Member Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex::basic_regex
basic_regex::~basic_regex
basic_regex::operator=
basic_regex::assign
オブザーバー
Original:
Observers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex::mark_count
basic_regex::flags
ロケール
Original:
Locale
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex::getloc
basic_regex::imbue
修飾子
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex::swap
定数
Original:
Constants
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
basic_regex constants
非メンバ関数
Original:
Non-member Functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
swap(std::basic_regex)
 
Defined in header <regex>
staticconstexprstd::regex_constants::syntax_option_type icase =

    std::regex_constants::icase;
staticconstexprstd::regex_constants::syntax_option_type nosubs =
    std::regex_constants::nosubs;
staticconstexprstd::regex_constants::syntax_option_type optimize =
    std::regex_constants::optimize;
staticconstexprstd::regex_constants::syntax_option_type collate =
    std::regex_constants::collate;
staticconstexprstd::regex_constants::syntax_option_type ECMAScript =
    std::regex_constants::ECMAScript;
staticconstexprstd::regex_constants::syntax_option_type basic =
    std::regex_constants::basic;
staticconstexprstd::regex_constants::syntax_option_type extended =
    std::regex_constants::extended;
staticconstexprstd::regex_constants::syntax_option_type awk =
    std::regex_constants::awk;
staticconstexprstd::regex_constants::syntax_option_type grep =
    std::regex_constants::grep;
staticconstexprstd::regex_constants::syntax_option_type egrep =

    std::regex_constants::egrep;
std::basic_regex一般的な正規表現マッチングの構文を規定するいくつかの定数を定義しています.
Original:
std::basic_regex defines several constants that govern general regex matching syntax.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
これらの定数はstd::regex_constantsから複製されています
Original:
These constants are duplicated from std::regex_constants:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Original:
Value
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
Effect(s)
icase Character matching should be performed without regard to case.
nosubs When performing matches, no sub-expression matches should be stored in the supplied std::regex_match structure.
optimize Instructs the regular expression engine to make matching faster, with the potential cost of making construction slower. For example, this might mean converting a non-deterministic FSA to a deterministic FSA.
collate Character ranges of the form "[a-b]" will be locale sensitive.
ECMAScript Use the ECMAScript (JavaScript) regular expression grammar (ECMA-262 grammar documentation), modified to support collating elements, character classes, and equivalence classes from POSIX, and the character class aliases \d, \D, \s, \S, \w, and \W are made locale-sensitive
basic Use the basic POSIX regular expression grammar (grammar documentation).
extended Use the extended POSIX regular expression grammar (grammar documentation).
awk Use the regular expression grammar used by the awk utility in POSIX (grammar documentation)
grep Use the regular expression grammar used by the grep utility in POSIX. This is effectively the same as the basic option with the addition of newline '\n' as an alternation separator.
egrep Use the regular expression grammar used by the grep utility, with the -E option, in POSIX. This is effectively the same as the extended option with the addition of newline '\n' as an alternation separator in addtion to '|'.

[編集]参照

正規表現の振る舞い​​を制御する一般的なオプション
Original:
general options controlling regex behavior
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(typedef)[edit]
close