In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/ad63362ff9df2b5139e84db30e07cb7016ac35f6?hp=5cd8f091ee4dda468a6e715960d37d7c896af0d5>
- Log ----------------------------------------------------------------- commit ad63362ff9df2b5139e84db30e07cb7016ac35f6 Author: Karl Williamson <[email protected]> Date: Tue Jan 20 18:24:26 2015 -0700 perlrecharclass: Fix typo ----------------------------------------------------------------------- Summary of changes: pod/perlrecharclass.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pod/perlrecharclass.pod b/pod/perlrecharclass.pod index 4421911..1dec878 100644 --- a/pod/perlrecharclass.pod +++ b/pod/perlrecharclass.pod @@ -611,7 +611,7 @@ Examples: [\N{APOSTROPHE}-\N{QUESTION MARK}] # Matches any of the characters '()*+,-./0123456789:;<=>? # even on an EBCDIC platform. - [\N{U+27}-\N{U+3F}] # Same. (U+27 is "'", and U+3F is "?" + [\N{U+27}-\N{U+3F}] # Same. (U+27 is "'", and U+3F is "?") As the final two examples above show, you can achieve portablity to non-ASCII platforms by using the C<\N{...}> form for the range -- Perl5 Master Repository
