This commit is contained in:
jzmaddock
2013-12-14 17:42:13 +00:00
parent 7c7f38b009
commit e5bbcac3da
102 changed files with 214 additions and 187 deletions

View File

@ -126,7 +126,7 @@ to a [match_results] object, whose members are set as follows:
[table
[[Element][Value]]
[[`(*it).size()`][`re.mark_count()`]]
[[`(*it).size()`][`1 + re.mark_count()`]]
[[`(*it).empty()`][`false`]]
[[`(*it).prefix().first`][The end of the last match found, or the start
of the underlying sequence if this is the first match enumerated]]
@ -203,7 +203,7 @@ memory allocation (if Boost.Regex is configured in non-recursive mode).
const basic_regex<charT, traits>& e,
regex_constants::match_flag_type m = regex_constants::match_default);
[*Effects]: returns an iterator that enumerates all occurences of expression /e/
[*Effects]: returns an iterator that enumerates all occurrences of expression /e/
in text /p/ using [match_flag_type] /m/.
[h4 Examples]