vote up 6 vote down star
2

Is it possible to perform a named-group match in Perl's regex syntax as with Python's? I always bind the $n values to proper names after matching, so I'd find it more convenient to do it in the regex itself if it's possible.

Python does it like so:

>>> import re
>>> regex = re.compile(r'(?P<count>\d+)')
>>> match = regex.match('42')
>>> print match.groupdict()
{'count': '42'}

I know the ?P indicates that it's a Python-specific regex feature, but I'm hoping it's in Perl in a different way or was added later on. Is there any way to get a result hash in a similar manner in Perl?

flag

For search engine findability: named groups are sometimes also referred to as "symbolic group names". – conny Jul 11 at 20:24

5 Answers

vote up 14 vote down check

Perl uses (?<NAME>pattern) to specify names captures. You have to use the %+ hash to retrieve them.

$variable =~ /(?<count>\d+)/;
print "Count is $+{count}";

This is only supported on Perl 5.10 and higher though.

link|flag
1  
/(?'count'\d+)/ works as well. – Brad Gilbert Nov 14 '08 at 15:38
1  
You can also use %- to access the captures. – Brad Gilbert Aug 11 at 15:21
vote up -3 vote down

Not as far as I know... but what's wrong with the good old way:

"42" =~ /(\d+)/;
my $count = $1;

link|flag
perl 5.10 supports named capture groups – aku Nov 14 '08 at 1:44
The old way has several problems for usual regexes with several captures, including sequencing and knowing what should show up where. – brian d foy Nov 14 '08 at 3:01
nothing wrong with the "old" way (I didn't realize there was a new way!) but I prefer the flexibility / compactness of the new approach... embrace change & all that . – lexu Nov 14 '08 at 6:09
@lexu There is something wrong with the old way, examine this example gist.github.com/142109 It takes five extra lines to untangle the captures into the right place and it was very a simple case. Here is a slightly more complicated real world case: gist.github.com/142116 And the full regex only gets more complicated. – Chas. Owens Jul 7 at 14:51
vote up 4 vote down

AFIK PCRE has named group capturing as:

(?'NAME'pattern)
(?<NAME>pattern)

You can find info here.

link|flag
vote up 11 vote down

As of Perl 5.10, Perl regexes support some Python features, making them Python compatible regexes, I guess. The Python versions have the "P" in them, but all of these work in Perl 5.10. See the perlre documentation for the details:

Define a named capture buffer. Equivalent to (?<NAME>pattern).

(?P<NAME>pattern)

Backreference to a named capture buffer. Equivalent to \g{NAME}.

(?P=NAME)

Subroutine call to a named capture buffer. Equivalent to (?&NAME).

(?P>NAME)

Although I didn't add the Python-compatibility to the latest edition of Learning Perl, we do cover the new Perl 5.10 features, including named captures.

link|flag
Please clarify which is the Perl syntax and which the Python. – ysth Nov 14 '08 at 8:03
The syntax with the extra P is python. – Leon Timmermans Nov 14 '08 at 19:36
They are all Perl syntax. – brian d foy Nov 14 '08 at 20:39
I have tried them all to see which work in Perl. Yes, all of them can be used in latest Perl. – Aftershock Aug 30 at 13:17
vote up 3 vote down

As couple of people said perl 5.10 has named groups.

But in previous perls you can do something, not as convenient, but relatively nice:

my %hash;
@hash{"count", "something_else"} = $string =~ /(\d+)\s*,\s*(\S+)/;

and then you can use:

$hash{"count"} and $hash{"something_else"}.

link|flag
+1 I'd prefer this over $1, $2, ... anyday! Thanks for the tip. – cdleary Jul 7 at 11:23

Your Answer

Get an OpenID
or

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