vote up 3 vote down star

I expected this to print "[b]" but it prints "[]":

$x = "abc";
$x =~ /(b*)/;
print "[$1]";

If the star is replaced with a plus, it acts as I expect. Aren't both plus and star supposed to be greedy?

ADDED: Thanks everyone for pointing out (within seconds, it seemed!) that "b*" matches the empty string, the first occurrence of which is before the string even starts. So greediness is not the issue at all. It matches the empty string before even getting to the first 'b'.

flag

73% accept rate

6 Answers

vote up 10 vote down check

It is greedy, but b* will match the empty string. anything* will always match the empty string so,

  "abc"
  /\
     --- matches the empty string here.

If you print $' you'll see it's abc, which is the rest of the string after the match. Greediness just means that in the case of "bbb", you get "bbb", and not "b" or "bb".

link|flag
2  
I see. So greediness is not the issue at all. It never has a chance to greedily match the string of b's since it matches the empty string at the very beginning of string before it even gets to the b's. – dreeves Jul 12 at 22:00
You are correct, sir. – chaos Jul 12 at 22:01
vote up 3 vote down

The regex will match a(backtrack) (which is an empty value since the regex backtracked) and end there. With the + quantifier it doesn't match a or c so the value of $1 becomes b.

link|flag
1  
Not quite correct. It matches and terminates at a, not c. – chaos Jul 12 at 21:30
Ah right, I was thinking of it as a global match. Corrected. – Blixt Jul 12 at 21:31
vote up 10 vote down

The pattern will match and return the first time b* is true, i.e. it will perform a zero-width match at a. To more clearly illustrate what's going on, do this:

$x = "zabc";
$x =~ /(.b*)/;
print "[$1]";
link|flag
vote up 3 vote down

The regex matches at the earliest point in the string that it can. In the case of 'abc' =~ /(b*)/, that point is right at the beginning of the string where it can match zero b's. If you had tried to match 'bbc', then you would have printed:

[bb]

link|flag
vote up 0 vote down

A * at the end of a pattern is almost always not what you want. We even have this as a trick question in Learning Perl to illustrate just this problem.

link|flag
vote up 0 vote down

Matching as early as possible has a higher priority than the length of the match (AFAIR this is the case of Perl's regex matching engine, which is a NFA). Therefore a zero length match at the start of the string is more desirable than a longer match later in the string.

For more information search for "DFA vs NFA" in this article about regex matching engines.

link|flag

Your Answer

Get an OpenID
or

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