? is the modifier that says do a minimal match vs. a maximal match. Run the following code:
my $x = "aabaab";
my ($y1) = $x =~ /([ab]+)/;
my ($y2) = $x =~ /([ab]+?)/;
print "$x -> '$y1' '$y2'\n";
------ We are the carpenters and bricklayers of the Information Age. Don't go borrowing trouble. For programmers, this means Worry only about what you need to implement. Please remember that I'm crufty and crochety. All opinions are purely mine and all code is untested, unless otherwise specified. |