bart@cg681574-a.adubn1.nj.home.com [Tue, 29 May 2001 13:58:59 +0000 (08:58 -0500)]
Message-Id: <E154ohn-00053j-00@debian.adubn1.nj.home.com>
p4raw-id: //depot/perl@10315
got <d is under the >
Here's another example: let's say you'd like to match a number at the end
-of a string, and you also want to keep the preceding part the match.
+of a string, and you also want to keep the preceding of part the match.
So you write this:
$_ = "I have 2 numbers: 53147";
But that isn't going to match; at least, not the way you're hoping. It
claims that there is no 123 in the string. Here's a clearer picture of
-why it that pattern matches, contrary to popular expectations:
+why that pattern matches, contrary to popular expectations:
$x = 'ABC123' ;
$y = 'ABC445' ;