diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-23 12:26:12 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-10-23 12:26:12 +0000 |
commit | 44bc797b2bc92bd45d512cde050d525bd921cf16 (patch) | |
tree | aeb25d19b4aaeab351f8d90deffd297a02b16aa9 /pod/perlunicode.pod | |
parent | 008d9c33675aa00e42b5f6fb7c669165487b9dc5 (diff) | |
download | perl-44bc797b2bc92bd45d512cde050d525bd921cf16.tar.gz |
Fix multicharacter titlecase (ucfirst).
p4raw-id: //depot/perl@12601
Diffstat (limited to 'pod/perlunicode.pod')
-rw-r--r-- | pod/perlunicode.pod | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/pod/perlunicode.pod b/pod/perlunicode.pod index 9b4d2e3eec..37e2f2218e 100644 --- a/pod/perlunicode.pod +++ b/pod/perlunicode.pod @@ -505,10 +505,11 @@ pack('C0', ...). =item * Case translation operators use the Unicode case translation tables -when provided character input. Note that C<uc()> translates to -uppercase, while C<ucfirst> translates to titlecase (for languages -that make the distinction). Naturally the corresponding backslash -sequences have the same semantics. +when provided character input. Note that C<uc()> (also known as C<\U> +in doublequoted strings) translates to uppercase, while C<ucfirst> +(also known as C<\u> in doublequoted strings) translates to titlecase +(for languages that make the distinction). Naturally the +corresponding backslash sequences have the same semantics. =item * |