tmp/tmpvc871ryz/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
### Bitmask type `match_flag_type` <a id="re.matchflag">[[re.matchflag]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std::regex_constants {
|
| 5 |
using match_flag_type = T2;
|
| 6 |
inline constexpr match_flag_type match_default = {};
|
|
@@ -26,12 +26,11 @@ The type `match_flag_type` is an *implementation-defined* bitmask type
|
|
| 26 |
Matching a regular expression against a sequence of characters
|
| 27 |
\[`first`, `last`) proceeds according to the rules of the grammar
|
| 28 |
specified for the regular expression object, modified according to the
|
| 29 |
effects listed in [[re.matchflag]] for any bitmask elements set.
|
| 30 |
|
| 31 |
-
**Table: `regex_constants::match_flag_type` effects
|
| 32 |
-
character container sequence {[}`first`, `last`{)}.** <a id="re.matchflag">[re.matchflag]</a>
|
| 33 |
|
| 34 |
| Element | Effect(s) if set |
|
| 35 |
| ------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| 36 |
| % \indexlibraryglobal{match_not_bol}% `match_not_bol` | The first character in the sequence {[}`first`, `last`{)} shall be treated as though it is not at the beginning of a line, so the character \verb|^| in the regular expression shall not match {[}`first`, `first`{)}. |
|
| 37 |
| % \indexlibraryglobal{match_not_eol}% `match_not_eol` | The last character in the sequence {[}`first`, `last`{)} shall be treated as though it is not at the end of a line, so the character \verb|"$"| in the regular expression shall not match {[}`last`, `last`{)}. |
|
|
|
|
| 1 |
+
#### Bitmask type `match_flag_type` <a id="re.matchflag">[[re.matchflag]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
namespace std::regex_constants {
|
| 5 |
using match_flag_type = T2;
|
| 6 |
inline constexpr match_flag_type match_default = {};
|
|
|
|
| 26 |
Matching a regular expression against a sequence of characters
|
| 27 |
\[`first`, `last`) proceeds according to the rules of the grammar
|
| 28 |
specified for the regular expression object, modified according to the
|
| 29 |
effects listed in [[re.matchflag]] for any bitmask elements set.
|
| 30 |
|
| 31 |
+
**Table: `regex_constants::match_flag_type` effects** <a id="re.matchflag">[re.matchflag]</a>
|
|
|
|
| 32 |
|
| 33 |
| Element | Effect(s) if set |
|
| 34 |
| ------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| 35 |
| % \indexlibraryglobal{match_not_bol}% `match_not_bol` | The first character in the sequence {[}`first`, `last`{)} shall be treated as though it is not at the beginning of a line, so the character \verb|^| in the regular expression shall not match {[}`first`, `first`{)}. |
|
| 36 |
| % \indexlibraryglobal{match_not_eol}% `match_not_eol` | The last character in the sequence {[}`first`, `last`{)} shall be treated as though it is not at the end of a line, so the character \verb|"$"| in the regular expression shall not match {[}`last`, `last`{)}. |
|