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 fin
$n
AFIK PCRE has named group capturing as:
(?'NAME'pattern) (?pattern)
You can find info here.