From: root@ak-75.mind.de Date: Sun, 28 Jan 2001 20:32:29 +0000 (+0100) Subject: [ID 20010128.003] [PATCH] perlre.pod  buglet X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=20fb949fed790d46b0900443523ae4205f81da71;p=p5sagit%2Fp5-mst-13.2.git [ID 20010128.003] [PATCH] perlre.pod  buglet Message-Id: <200101281932.UAA15768@ak-75.mind.de> p4raw-id: //depot/perl@8587 --- diff --git a/pod/perlre.pod b/pod/perlre.pod index 0c38ac7..2e2f59c 100644 --- a/pod/perlre.pod +++ b/pod/perlre.pod @@ -1096,7 +1096,7 @@ For example: $_ = 'bar'; s/\w??/<$&>/g; -results in C<"<><><><>">. At each position of the string the best +results in C<< <><><><> >>. At each position of the string the best match given by non-greedy C is the zero-length match, and the I match is what is matched by C<\w>. Thus zero-length matches alternate with one-character-long matches.