I need to scrape a web page using Java and I\'ve read that regex is a pretty inefficient way of doing it and one should put it into a DOM Document to navigate it.
I\
Regex is definitely the way to go. Building a DOM is overly complicated and itself requires a lot of text parsing.