
please wait
default (1) | regex_iterator(); |
---|---|
copy (2) | regex_iterator (const regex_iterator& rit); |
initialization (3) | regex_iterator ( BidirectionalIterator first, BidirectionalIterator last, const regex_type& rgx, regex_constants::match_flag_type flags = regex_constants::match_default); |
default (1) | regex_iterator(); |
---|---|
copy (2) | regex_iterator (const regex_iterator& rit); |
initialization (3) | regex_iterator ( BidirectionalIterator first, BidirectionalIterator last, const regex_type& rgx, regex_constants::match_flag_type flags = regex_constants::match_default); |
moving (deleted) (4) | regex_iterator ( BidirectionalIterator, BidirectionalIterator, const regex_type&&, regex_constants::match_flag_type = regex_constants::match_default) = delete; |
flag* | effects on match | notes |
---|---|---|
match_default | Default | Default matching behavior. This constant has a value of zero**. |
match_not_bol | Not Beginning-Of-Line | The first character is not considered a beginning of line ("^" does not match). |
match_not_eol | Not End-Of-Line | The last character is not considered an end of line ("$" does not match). |
match_not_bow | Not Beginning-Of-Word | The escape sequence "\b" does not match as a beginning-of-word. |
match_not_eow | Not End-Of-Word | The escape sequence "\b" does not match as an end-of-word. |
match_any | Any match | Any match is acceptable if more than one match is possible. |
match_not_null | Not null | Empty sequences do not match. |
match_continuous | Continuous | The expression must match a sub-sequence that begins at the first character. Sub-sequences must begin at the first character to match. |
match_prev_avail | Previous Available | One or more characters exist before the first one. (match_not_bol and match_not_bow are ignored) |
format_default | Default | Same as match_default. This constant has a value of zero**. |
format_sed | None | Ignored by this object. See match_constants for more info. |
format_no_copy | ||
format_first_only |
|
|
subject submarine subsequence |