vote up 2 vote down star

Hi,
I thought I understood Perl RE to a reasonable extent, but this is puzzling me:

#!/usr/bin/perl
use strict;
use warnings;

my $test = "'some random string'";

if($test =~ /\'?(.*?)\'?/) {
       print "Captured $1\n";
       print "Matched $&";
}
else {
       print "What?!!";
}

prints

Captured
Matched '

It seems it has matched the ending ' alone, and so captured nothing.
I would have expected it to match the entire thing, or if it's totally non-greedy, nothing at all (as everything there is an optional match).
This in between behaviour baffles me, can anyone explain what is happening?
Thanks, Sundar.

flag

80% accept rate

5 Answers

vote up 10 vote down check

The \'? at the beginning and end means match 0 or 1 apostrophes greedily. (As another poster has pointed out, to make it non-greedy, it would have to be \'??)

The .*? in the middle means match 0 or more characters non-greedily.

The Perl regular expression engine will look at the first part of the string. It will match the beginning, but does so greedily, so it picks up the first apostrophe. It then matches non-greedily (so takes as little as it can) followed by an optional apostrophe. This is matched by the empty string.

link|flag
Thank you for the very clear explanation. – sundar Apr 3 at 8:31
In other words, only the beginning apostrophe was matched, the rest of the regex matches the empty string. – blixtor Apr 6 at 10:27
vote up 2 vote down

pattern? is greedy, if you want it to be non-greedy you must say pattern??:

#!/usr/bin/perl
use strict;
use warnings;

my $test = "'some random string'";

if($test =~ /\'?(.*?)\'?/) {
       print "Captured [$1]\n";
       print "Matched  [$&]\n";
}
if($test =~ /\'??(.*?)\'??/) {
       print "Captured [$1]\n";
       print "Matched  [$&]\n";
}

from perldoc perlre:

The following standard quantifiers are recognized:

*      Match 0 or more times
+      Match 1 or more times
?      Match 1 or 0 times
{n}    Match exactly n times
{n,}   Match at least n times
{n,m}  Match at least n but not more than m times

By default, a quantified subpattern is "greedy", that is, it will match as many times as possible (given a particular starting location) while still allowing the rest of the pattern to match. If you want it to match the minimum number of times possible, follow the quantifier with a "?". Note that the meanings don’t change, just the "greediness":

*?     Match 0 or more times
+?     Match 1 or more times
??     Match 0 or 1 time
{n}?   Match exactly n times
{n,}?  Match at least n times
{n,m}? Match at least n but not more than m times
link|flag
Nope, perl regex is greedy by default and ? makes them non-greedy. – edg Apr 3 at 7:59
Um, read what I said again, pattern? is greedy (because that is the default), to get non-greedy you must say pattern??. – Chas. Owens Apr 3 at 8:03
From the perldoc you quoted: If you want it to match the minimum number of times possible, follow the quantifier with a "?". – edg Apr 3 at 8:09
yes, you must follow the quantifier with ?. The pattern is not the quantifier. The quantifier in this case is ? which is the same as the {0,1} quantifier. To get non-greedy optional matches you must say pattern??, that is pattern, quantifier (in this case ?), and then non-greedy ?. – Chas. Owens Apr 3 at 8:13
It is right there in the freaking perldoc I quoted, forth line from the bottom! – Chas. Owens Apr 3 at 8:14
show 12 more comments
vote up 2 vote down

I think you mean something like:

/'(.*?)'/      // matches everything in single quotes

or

/'[^']*'/      // matches everything in single quotes, but faster

The singe quotes don't need to be escaped, AFAIK.

link|flag
vote up 1 vote down

Beware of making all elements of your regex optional (i.e. having all elements quantified with * or ? ). This lets the Perl regex engine match as much as it wants (even nothing), while still considering the match successful.

I suspect what you want is

/'(.*?)'/
link|flag
vote up 0 vote down

I would say the closest answer to what you are looking for is

/'?([^']*)'?/

So "get the single quote if it's there", "get anything and everything that's not a single quote", "get the last single quote if it's there".

Unless you want to match "'don't do this'" - but who uses an apostrophe in a single quote anyway (and gets away with it for long)? :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.