show/hide this revision's text 5 deleted 158 characters in body

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.

show/hide this revision's text 4 added 34 characters in body

there's also

these are not so simple, but may be worth looking at...

python module pyparsing (pyparsing.wikispaces.com). 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.

show/hide this revision's text 3 added 94 characters in body

there's also python module pyparsing (pyparsing.wikispaces.com). pyparsing 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.

show/hide this revision's text 2 added 223 characters in body; added 10 characters in body; added 2 characters in body
show/hide this revision's text 1