vote up 1 vote down star
2

I'm interested how can be implemented recursive regexp matching in Python (I've not found any examples :( ). For example how would one write expression which matches "bracket balanced" string like "foo(bar(bar(foo)))(foo1)bar1"

flag

50% accept rate
1  
I'd write a parser for this. – Geo Nov 1 at 10:54

3 Answers

vote up 3 vote down

You could use pyparsing

#!/usr/bin/env python
from pyparsing import nestedExpr
import sys
astring=sys.argv[1]
if not astring.startswith('('):
    astring='('+astring+')'

expr = nestedExpr('(', ')')
result=expr.parseString(astring).asList()[0]
print(result)

Running it yields:

% test.py "foo(bar(bar(foo)))(foo1)bar1"
['foo', ['bar', ['bar', ['foo']]], ['foo1'], 'bar1']
link|flag
vote up 0 vote down

You can't do it with a regexp. Python doesn't support recursive regexp

link|flag
vote up 0 vote down

Unfortunately I don't think Python's regexps support recursive patterns.

You can probably parse it with something like pyparsing: http://pyparsing.wikispaces.com/

link|flag

Your Answer

Get an OpenID
or

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