these are not so simple, but may be worth looking at...
python module pyparsing (pyparsing.wikispaces.com) allows specifying grammar - then using it to parse text. Douglas, thanks for the post about ANTLR I haven't heard of it. Also there's PLY - python2 and python3 compatible implementation of lex/yacc.
I've written an ad-hoc regex-based parser myself first, but later realized that I might benefit from using some mature parsing tool and learning concepts of context independent grammar, etc.
The advantage of using grammar for parsing is that you can easily modify the rules and formalize quite complex syntax for whatever you are parsing.
first I looked at flex/bison, but then found pyparsing and so far it works for me. flex/bison combination is very powerful, but requires coding in C.
