According to perlretut
... in scalar context,
$time =~ /(\d\d):(\d\d):(\d\d)/returns a true or false value. In list context, however, it returns the list of matched values($1,$2,$3).
But I can't find an explanation of what is returned in list context if the pattern matches when there are no capturing groups in the regexp. Testing shows that it is the list (1) (single element, integer 1). (Ancillary question - will it always be this, where is it defined?)
This makes it difficult to do what I want:
if (my @captures = ($input =~ $regexp)) {
furtherProcessing(@captures);
}
I want furtherProcessing to be called if there is a match, with any captured groups passed as arguments. The problem comes when the $regexp contains no capturing groups because then I want furtherProcessing to be called with no arguments, not with the value 1 which is what happens in the above. I can't test for (1) as a special case, like this
if (my @captures = ($input =~ $regexp)) {
shift @captures if $captures[0] == 1;
furtherProcessing(@captures);
}
because in the case of
$input = 'a value:1';
$regexp = qr/value:(\S+)/;
there is a captured value in @captures that happens to look the same as what I get when the $regexp matches but has no capturing groups.
Is there a way to do what I want?