diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-05 02:13:09 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-03-05 02:13:09 +0000 |
commit | 55eda71149148d511e3e5da4f7c4e646dd445502 (patch) | |
tree | 5ac63e0b610b87bb3694e246aeccf3efd1f0489b /pod/perlretut.pod | |
parent | 6e2c8ce6fba866a92c47c38076567c2392d3f577 (diff) | |
download | perl-55eda71149148d511e3e5da4f7c4e646dd445502.tar.gz |
Retracting \N{U+HHHH}.
p4raw-id: //depot/perl@9025
Diffstat (limited to 'pod/perlretut.pod')
-rw-r--r-- | pod/perlretut.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlretut.pod b/pod/perlretut.pod index 2647076234..a77b87e125 100644 --- a/pod/perlretut.pod +++ b/pod/perlretut.pod @@ -1657,9 +1657,9 @@ or deciphering someone else's hexadecimal Unicode regexp is about as much fun as programming in machine code. So another way to specify Unicode characters is to use the S<B<named character> > escape sequence C<\N{name}>. C<name> is a name for the Unicode character, as -specified in the Unicode standard, or "U+" followed by the hexadecimal -code of the character. For instance, if we wanted to represent or -match the astrological sign for the planet Mercury, we could use +specified in the Unicode standard. For instance, if we wanted to +represent or match the astrological sign for the planet Mercury, we +could use use utf8; # We will be doing Unicode processing use charnames ":full"; # use named chars with Unicode full names |