diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-12 05:17:14 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-12 05:17:14 +0000 |
commit | d3b55b48172934cab9a64a8de5d1bdd25b115c5c (patch) | |
tree | 1f09cd495fb8a4f0a946bca7470c3b78651d1d9b /pod | |
parent | a5365663f59d38ce50a53f9b46b25daa36d5ab17 (diff) | |
download | perl-d3b55b48172934cab9a64a8de5d1bdd25b115c5c.tar.gz |
Gotta Get'em Cases Right.
p4raw-id: //depot/perl@20627
Diffstat (limited to 'pod')
-rw-r--r-- | pod/perlreref.pod | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pod/perlreref.pod b/pod/perlreref.pod index bcebb62082..5ce6463b8a 100644 --- a/pod/perlreref.pod +++ b/pod/perlreref.pod @@ -85,9 +85,9 @@ These work as in normal strings. \N{name} A named character \l Lowercase next character - \u Uppercase next character + \u Titlecase next character \L Lowercase until \E - \U Titlecase until \E + \U Uppercase until \E \Q Disable pattern metacharacters until \E \E End case modification @@ -222,8 +222,8 @@ Captured groups are numbered according to their I<opening> paren. split Use regex to split a string into parts -The first four of these are identical to the escape sequences \l, \u, -\L, and \U. For Titlecase, see L</Titlecase>. +The first four of these are like the escape sequences C<\L>, C<\l>, +C<\U>, and C<\u>. For Titlecase, see L</Titlecase>. =head2 Terminology |