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"
feedback
|
|
You could use pyparsing
Running it yields:
| |||
|
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/ | |||
|
feedback
|