I want to parse some HTML in order to find the values of some attributes/tags etc.

What HTML parsers do you recommend? Any pros and cons?

link|improve this question

feedback

3 Answers

up vote 12 down vote accepted

NekoHTML, TagSoup, and JTidy will allow you to parse HTML and then process with XML tools, like XPath.

link|improve this answer
XPath is the way for HTML parsing, it helps in case of bad formed HTML as well where regex fails. – Sumit Ghosh May 14 '10 at 10:09
feedback

I have tried HTML Parser which is dead simple.

link|improve this answer
I have used HTML parser on a project and it worked exactly as expected – Craig Angus Sep 27 '08 at 0:21
1  
but there is not much tutorials available... – Lily Jul 7 '09 at 14:25
I've noticed a lot of javascript snippets (and element attributes) creeping into my supposedly "text node" extractions. There have also been some cases where malformed HTML caused the whole parsing operation to fail. So I'm looking to replace the htmlparser library in my own project with something a little better. – benjismith Mar 16 '11 at 18:02
feedback

Do you need to do a full parse of the HTML? If you're just looking for specific values within the contents (a specific tag/param), then a simple regular expression might be enough, and could very well be faster.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.