up vote 3 down vote favorite
2
share [g+] share [fb]

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"

link|improve this question

60% accept rate
1  
I'd write a parser for this. – Tempus Nov 1 '09 at 10:54
feedback

3 Answers

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|improve this answer
feedback

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

link|improve this answer
feedback

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|improve this answer
I'd have said, fortunately... – pillmuncher May 1 '11 at 9:57
feedback

Your Answer

 
or
required, but never shown

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