diff --git a/doc/html/boost_regex/syntax/perl_syntax.html b/doc/html/boost_regex/syntax/perl_syntax.html index eed6b47b..358de1a8 100644 --- a/doc/html/boost_regex/syntax/perl_syntax.html +++ b/doc/html/boost_regex/syntax/perl_syntax.html @@ -405,7 +405,8 @@ characters
- For example =[abc]=, will match any of the characters 'a', 'b', or 'c'.
+ For example [abc]
, will match any of the characters 'a',
+ 'b', or 'c'.
- For example =[a-c]= will match any single character in the range 'a' to 'c'.
- By default, for Perl regular expressions, a character x is within the range
- y to z, if the code point of the character lies within the codepoints of
- the endpoints of the range. Alternatively, if you set the collate
+ For example [a-c]
will match any single character in the
+ range 'a' to 'c'. By default, for Perl regular expressions, a character x
+ is within the range y to z, if the code point of the character lies within
+ the codepoints of the endpoints of the range. Alternatively, if you set the
+ collate
flag when constructing the regular expression, then ranges are locale
sensitive.
If the bracket-expression begins with the ^ character, then it matches the
- complement of the characters it contains, for example =a-c
=
+ complement of the characters it contains, for example [^a-c]
matches any character that is not in the range a-c
.
Last revised: November 29, 2012 at 10:43:51 GMT |
+Last revised: January 31, 2013 at 17:33:20 GMT |