From: Jarkko Hietaniemi Date: Tue, 12 Aug 2003 05:17:14 +0000 (+0000) Subject: Gotta Get'em Cases Right. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=d3b55b48172934cab9a64a8de5d1bdd25b115c5c;p=p5sagit%2Fp5-mst-13.2.git Gotta Get'em Cases Right. p4raw-id: //depot/perl@20627 --- diff --git a/pod/perlreref.pod b/pod/perlreref.pod index bcebb62..5ce6463 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 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. +The first four of these are like the escape sequences C<\L>, C<\l>, +C<\U>, and C<\u>. For Titlecase, see L. =head2 Terminology