in reply to Re: String Matching
in thread String Matching

Just for the record, the standard quantifiers in Perl regular expressions are, indeed, greedy.

Replies are listed 'Best First'.
Re^3: String Matching
by Jenda (Abbot) on Aug 15, 2012 at 07:51 UTC

    They are greedy, but not too clever

    my $str = "xaxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; $str =~ /(a+)/; print "$1\n"; # prints "a" not "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
    The quantifiers are greedy, but they refuse to let go of something they found unless forced even if they could get more someplace later.

    Jenda
    Enoch was right!
    Enjoy the last years of Rome.

      I'll see you and raise you.   /(a*)/ (note * quantifier in place of +) matches, but captures nothing, not even a single 'a'.

      >perl -wMstrict -le "my $s = 'xaxaaaaa'; print qq{matched, captured '$1'} if $s =~ /(a*)/; " matched, captured ''
      Um, they start from the left, stop when they find a match -- that is clever
        And predictable! I'd hate to regex in a world that wasn't predictable.