Andrew Lentvorski wrote:
> 
> Also, Perl needs to suck it up and put named groups in its regex engine. 

What is the benefit of:

        (?P<id>[a-zA-Z_]\w*)            m.group('id')

over
        ([a-zA-Z_]\w*)                  $1
?

-john


-- 
[email protected]
http://www.kernel-panic.org/cgi-bin/mailman/listinfo/kplug-list

Reply via email to