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"
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could use pyparsing
Running it yields:
|
|||
|
|
|
Unfortunately I don't think Python's regexps support recursive patterns. You can probably parse it with something like pyparsing: http://pyparsing.wikispaces.com/ |
|||||
|