std::regex_constants::syntax_option_type(3) | C++ Standard Libary | std::regex_constants::syntax_option_type(3) |
NAME¶
std::regex_constants::syntax_option_type - std::regex_constants::syntax_option_type
Synopsis¶
Defined in header <regex>
using syntax_option_type = /* implementation-defined (1) (since
C++11)
*/;
constexpr syntax_option_type icase = /*
unspecified */;
constexpr syntax_option_type nosubs = /*
unspecified */;
constexpr syntax_option_type optimize = /*
unspecified */;
constexpr syntax_option_type collate = /*
unspecified */;
constexpr syntax_option_type ECMAScript = /*
unspecified */; (since C++11)
constexpr syntax_option_type basic = /* (until C++17)
unspecified */;
constexpr syntax_option_type extended = /*
unspecified */;
constexpr syntax_option_type awk = /*
unspecified */;
constexpr syntax_option_type grep = /*
unspecified */;
constexpr syntax_option_type egrep = /*
unspecified */;
inline constexpr syntax_option_type icase = /* (2)
unspecified */;
inline constexpr syntax_option_type nosubs = /*
unspecified */;
inline constexpr syntax_option_type optimize = /*
unspecified */;
inline constexpr syntax_option_type collate = /*
unspecified */;
inline constexpr syntax_option_type ECMAScript = /*
unspecified */; (since C++17)
inline constexpr syntax_option_type basic = /*
unspecified */;
inline constexpr syntax_option_type extended = /*
unspecified */;
inline constexpr syntax_option_type awk = /*
unspecified */;
inline constexpr syntax_option_type grep = /*
unspecified */;
inline constexpr syntax_option_type egrep = /*
unspecified */;
inline constexpr syntax_option_type multiline = /* (3) (since
C++17)
unspecified */;
1) The syntax_option_type is a BitmaskType that contains options that govern
how
regular expressions behave.
2,3) The possible values (icase, optimize, etc.) for type (1) are
duplicated inside
std::basic_regex.
Constants¶
Grammar option Effect(s)
ECMAScript Use the Modified ECMAScript regular expression grammar.
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).
Use the regular expression grammar used by the grep utility in
grep POSIX. This is effectively the same as the basic option with the
addition of newline '\n' as an alternation separator.
Use the regular expression grammar used by the grep utility, with
egrep 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 addition to '|'.
Grammar variation Effect(s)
icase Character matching should be performed without regard to case.
When performing matches, all marked sub-expressions (expr) are
nosubs treated as non-marking sub-expressions (?:expr). No matches are
stored in the supplied std::regex_match structure and mark_count()
is zero.
Instructs the regular expression engine to make matching faster,
optimize 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.
multiline (C++17) Specifies that ^ shall match the beginning of a line
and $ shall
match the end of a line, if the ECMAScript engine is selected.
At most one grammar option can be chosen out of ECMAScript, basic, extended,
awk,
grep, egrep. If no grammar is chosen, ECMAScript is assumed to be selected.
The
other options serve as variations, such that std::regex("meow",
std::regex::icase)
is equivalent to std::regex("meow",
std::regex::ECMAScript|std::regex::icase).
Notes¶
Because POSIX uses "leftmost longest" matching rule
(the longest matching
subsequence is matched, and if there are several such subsequences, the first
one is
matched), it is not suitable, for example, for parsing markup languages: a
POSIX
regex such as "<tag[^>]*>.*</tag>" would match
everything from the first "<tag" to
the last "</tag>", including every "</tag>"
and "<tag>" in-between. On the other
hand, ECMAScript supports non-greedy matches, and the ECMAScript regex
"<tag[^>]*>.*?</tag>" would match only until the
first closing tag.
Example¶
Illustrates the difference in the matching algorithm between
ECMAScript and POSIX
regular expressions:
// Run this code
#include <iostream>
#include <regex>
#include <string>
int main()
{
std::string str = "zzxayyzz";
std::regex re1(".*(a|xayy)"); // ECMA
std::regex re2(".*(a|xayy)", std::regex::extended); // POSIX
std::cout << "Searching for .*(a|xayy) in zzxayyzz:\n";
std::smatch m;
std::regex_search(str, m, re1);
std::cout << " ECMA (depth first search) match: " <<
m[0] << '\n';
std::regex_search(str, m, re2);
std::cout << " POSIX (leftmost longest) match: " <<
m[0] << '\n';
}
Output:¶
Searching for .*(a|xayy) in zzxayyzz:
ECMA (depth first search) match: zzxa
POSIX (leftmost longest) match: zzxayy
Defect reports
The following behavior-changing defect reports were applied retroactively to
previously published C++ standards.
DR Applied to Behavior as published Correct behavior
LWG 2053 C++11 the constants were declared static removed the static
specifier
See also¶
basic_regex regular expression object
(C++11) (class template)
2024.06.10 | http://cppreference.com |