std::regex_token_iterator::regex_token_iterator
regex_token_iterator(); |
(1) | (since C++11) |
regex_token_iterator( BidirectionalIterator a, BidirectionalIterator b, const regex_type& re, |
(2) | (since C++11) |
regex_token_iterator( BidirectionalIterator a, BidirectionalIterator b, const regex_type& re, |
(3) | (since C++11) |
regex_token_iterator( BidirectionalIterator a, BidirectionalIterator b, const regex_type& re, |
(4) | (since C++11) |
template <std::size_t N> regex_token_iterator( BidirectionalIterator a, BidirectionalIterator b, |
(5) | (since C++11) |
regex_token_iterator( const regex_token_iterator& other ); |
(6) | (since C++11) |
Constructs a new regex_token_iterator
:
This section is incomplete |
[edit] Parameters
a | - | BidirectionalIterator to the beginning of the target character sequence
|
b | - | BidirectionalIterator to the end of the targe character sequence
|
re | - | regular expression used to search the target character sequence |
m | - | flags that govern the behavior of re
|
This section is incomplete |
[edit] Example
This section is incomplete Reason: no example |