You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The regular expression grammar to use is by specified by the use of one of the `std::regex_constants::syntax_option_type` enumeration values. These regular expression grammars are defined in `std::regex_constants`:
15
+
The regular expression grammar to use is specified by the use of one of the `std::regex_constants::syntax_option_type` enumeration values. These regular expression grammars are defined in `std::regex_constants`:
16
16
17
17
- ECMAScript: This is closest to the grammar used by JavaScript and the .NET languages.
18
18
- basic: The POSIX basic regular expressions or BRE.
@@ -56,7 +56,7 @@ An element can be one of the following:
56
56
57
57
- An *anchor*. Anchor `^` matches the beginning of the target sequence. Anchor `$` matches the end of the target sequence.
58
58
59
-
A *capture group* of the form (*subexpression*), or \\(*subexpression*\\) in basic and grep, which matches the sequence of characters in the target sequence that is matched by the pattern between the delimiters.
59
+
-A *capture group* of the form (*subexpression*), or \\(*subexpression*\\) in basic and grep, which matches the sequence of characters in the target sequence that is matched by the pattern between the delimiters.
60
60
61
61
- An *identity escape* of the form `\k`, which matches the character `k` in the target sequence.
62
62
@@ -92,7 +92,7 @@ In ECMAScript, an element can also be one of the following:
92
92
93
93
- A *control escape sequence* of the form `\ck`. Matches the control character that is named by the character `k`.
94
94
95
-
- A *word boundary assert* of the form`\b`. Matches when the current position in the target sequence is immediately after a *word boundary*.
95
+
- A *word boundary assert* of the form`\b`. Matches when the current position in the target sequence is immediately after a *word boundary*.
96
96
97
97
- A *negative word boundary assert* of the form `\B`. Matches when the current position in the target sequence isn't immediately after a *word boundary*.
0 commit comments