From: Rafael Garcia-Suarez Date: Tue, 24 May 2005 12:58:45 +0000 (+0000) Subject: Documentation nit on @-, found by Guillaume Rousse X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5060ef7b6a11b124f0b71afcf7384e13b79a28a6;p=p5sagit%2Fp5-mst-13.2.git Documentation nit on @-, found by Guillaume Rousse (plus POD markup simplification, for readability with pod2text) p4raw-id: //depot/perl@24563 --- diff --git a/pod/perlvar.pod b/pod/perlvar.pod index a9bbdae..fab45cb 100644 --- a/pod/perlvar.pod +++ b/pod/perlvar.pod @@ -528,9 +528,9 @@ C<$-[>IC<]> is the offset of the start of the substring matched by I-th subpattern, or undef if the subpattern did not match. Thus after a match against $_, $& coincides with C. Similarly, C<$>I coincides with CIC<], -$+[>IC<] - $-[>IC<]> if C<$-[>IC<]> is defined, and $+ coincides with -C. One can use C<$#-> to find the last +$+[0] - $-[0]>. Similarly, $I coincides with C if C<$-[n]> is defined, and $+ coincides with +C. One can use C<$#-> to find the last matched subgroup in the last successful match. Contrast with C<$#+>, the number of subgroups in the regular expression. Compare with C<@+>.