diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-05-25 13:29:34 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-05-25 13:29:34 +0000 |
commit | 2ddf2931629172758edefb4e67ffcf45a59200b6 (patch) | |
tree | 608c8f3e3bb0a551016c19904a4db0ddcdf4ced6 /pod/perlre.pod | |
parent | 41b9272f1653a282919f6be9f5541456cf548194 (diff) | |
download | perl-2ddf2931629172758edefb4e67ffcf45a59200b6.tar.gz |
\R can't be used in a char class
p4raw-id: //depot/perl@31277
Diffstat (limited to 'pod/perlre.pod')
-rw-r--r-- | pod/perlre.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlre.pod b/pod/perlre.pod index bd7a1aa1e6..a12349b6cb 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -269,7 +269,7 @@ X<word> X<whitespace> X<character class> X<backreference> \V Not vertical whitespace \h Horizontal whitespace \H Not horizontal whitespace - \R Linebreak (matches like \v inside of a charclass) + \R Linebreak A C<\w> matches a single alphanumeric character (an alphabetic character, or a decimal digit) or C<_>, not a whole word. Use C<\w+> |