I need to quickly create a parser for a very simplified version of the html-like markup language in Java. In python, I would use the pyparsing library for this. Is there something similar for Java? Please do not offer libraries that already exist for html parsing, my application is a school assignment that will demonstrate the movement of an object tree and serialize text using a visitor template, so I donβt think about it in real life. Basically all I need is tags, attributes and text nodes.
java python parsing pyparsing
Voy
source share