diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-29 17:07:25 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-29 17:07:25 +0000 |
commit | a02b5feb1739f020578122f08572c084a84f6335 (patch) | |
tree | a254620ae0ae0f6f133dd3a62f298d7041bbffa6 /pod/perluniintro.pod | |
parent | 77bec9fddc602cc32f38ac3764e937132ca61b3c (diff) | |
download | perl-a02b5feb1739f020578122f08572c084a84f6335.tar.gz |
Tiny doc tweak from Shannon -jj Behrens.
p4raw-id: //depot/perl@20935
Diffstat (limited to 'pod/perluniintro.pod')
-rw-r--r-- | pod/perluniintro.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perluniintro.pod b/pod/perluniintro.pod index 751bdc6f02..92a6569eeb 100644 --- a/pod/perluniintro.pod +++ b/pod/perluniintro.pod @@ -645,8 +645,8 @@ as if copies of the byte strings were upgraded to UTF-8: for example, $b = "\x{100}"; print "$a = $b\n"; -the output string will be UTF-8-encoded C<ab\x80c\x{100}\n>, but note -that C<$a> will stay byte-encoded. +the output string will be UTF-8-encoded C<ab\x80c = \x{100}\n>, but +C<$a> will stay byte-encoded. Sometimes you might really need to know the byte length of a string instead of the character length. For that use either the |