in reply to Re: Re: Trying to count the captures in a compiled regular expression
in thread Trying to count the captures in a compiled regular expression
As was pointed out by ysth and hugo, the case of no groupings will not return zero (because we need a true value to indicate a successful match), so we ought to put capturing parentheses around the expression, and subtract one from the result. And the possibility of embedded code, which we wouldn't want to run, is another caveat, so we want to use minimal matching. Hence:
my $regex = qr/foo/; $_ = 'anything'; my $matches = (() = /($regex)??/) - 1; # oops! fixed print "There were $matches groupings\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Explained: Trying to count the captures in a compiled regular expression
by ysth (Canon) on May 03, 2004 at 16:13 UTC | |
by Roy Johnson (Monsignor) on May 03, 2004 at 17:41 UTC |