I need to quickly build a parser for a very simplified version of a html-like markup language in Java. In python, I would use pyparsing library to do this. Is there something similar for Java? Please, don't suggest libraries already out there for html parsing, my application is a school assignment which will demonstrate walking a tree of objects and serializing to text using visitor pattern, so I'm not thinking in real world terms here. Basically all I need here is tags, attributes and text nodes.
|
feedback
|
|
Another good parser generator is ANTLR, that might be what you're looking for. | |||
|
feedback
|
|
May be overkill for your use, but javacc is an excellent industrial-strength parser generator. I've used this program/library several times, its reliable and worth learning, particularly if you are going to work with languages and compilers. Here's the description of the program from the website listed above:
| |||
feedback
|
|
A quick search for parser generators in Java yields JParsec. I've never used it - but it's inspired by a Haskell library, so by definition it must be good:-) | |||
feedback
|
|
I like JParsec (which I just discovered thanks to Torsten) because it doesn't generate code... :-) Perhaps less efficient, but enough for small tasks. There is a good list of parser (generators or not) at Java Source. | |||
|
feedback
|
|
There are quite a number choices for stringhandling in java.
Maybe the very basic Another good choice is maybe | |||
|
feedback
|