tmp/tmp0wzz4tvm/{from.md → to.md}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
### `regex_match` <a id="re.alg.match">[[re.alg.match]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class BidirectionalIterator, class Allocator, class charT, class traits>
|
| 5 |
bool regex_match(BidirectionalIterator first, BidirectionalIterator last,
|
| 6 |
match_results<BidirectionalIterator, Allocator>& m,
|
|
@@ -94,11 +94,11 @@ template<class charT, class traits>
|
|
| 94 |
const basic_regex<charT, traits>& e,
|
| 95 |
regex_constants::match_flag_type flags = regex_constants::match_default);
|
| 96 |
```
|
| 97 |
|
| 98 |
*Returns:*
|
| 99 |
-
`regex_match(str, str + char_traits<charT>::length(str), e, flags)`
|
| 100 |
|
| 101 |
``` cpp
|
| 102 |
template<class ST, class SA, class charT, class traits>
|
| 103 |
bool regex_match(const basic_string<charT, ST, SA>& s,
|
| 104 |
const basic_regex<charT, traits>& e,
|
|
|
|
| 1 |
+
#### `regex_match` <a id="re.alg.match">[[re.alg.match]]</a>
|
| 2 |
|
| 3 |
``` cpp
|
| 4 |
template<class BidirectionalIterator, class Allocator, class charT, class traits>
|
| 5 |
bool regex_match(BidirectionalIterator first, BidirectionalIterator last,
|
| 6 |
match_results<BidirectionalIterator, Allocator>& m,
|
|
|
|
| 94 |
const basic_regex<charT, traits>& e,
|
| 95 |
regex_constants::match_flag_type flags = regex_constants::match_default);
|
| 96 |
```
|
| 97 |
|
| 98 |
*Returns:*
|
| 99 |
+
`regex_match(str, str + char_traits<charT>::length(str), e, flags)`.
|
| 100 |
|
| 101 |
``` cpp
|
| 102 |
template<class ST, class SA, class charT, class traits>
|
| 103 |
bool regex_match(const basic_string<charT, ST, SA>& s,
|
| 104 |
const basic_regex<charT, traits>& e,
|