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"
|
|
You could use pyparsing
Running it yields:
|
||
|
|
|
|
You can't do it with a regexp. Python doesn't support recursive regexp |
||
|
|
|
|
Unfortunately I don't think Python's regexps support recursive patterns. You can probably parse it with something like pyparsing: http://pyparsing.wikispaces.com/ |
||
|
|
