Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #73794

Re: Get named groups from a regular expression

From Peter Otten <__peter__@web.de>
Subject Re: Get named groups from a regular expression
Date 2014-07-01 17:29 +0200
Organization None
References <louj52$j56$1@ger.gmane.org>
Newsgroups comp.lang.python
Message-ID <mailman.11372.1404228575.18130.python-list@python.org> (permalink)

Show all headers | View raw


Florian Lindner wrote:

> Is there a way I can extract the named groups from a regular expression?
> e.g. given "(?P<testgrp>\d)" I want to get something like ["testgrp"].

Easy, just write a regular expression to parse regular expressions ;)

(Sorry, I can't contribute something constructive, my first idea, re.DEBUG 
doesn't help)

> OR
> 
> Can I make the match object to return default values for named groups,
> even if no match was produced?

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Get named groups from a regular expression Peter Otten <__peter__@web.de> - 2014-07-01 17:29 +0200

csiph-web