vote up 4 vote down star
3

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?

flag

5 Answers

vote up 5 vote down check

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

link|flag
vote up 5 vote down

I have tried HTML Parser which is dead simple.

link|flag
I have used HTML parser on a project and it worked exactly as expected – Craig Angus Sep 27 '08 at 0:21
but there is not much tutorials available... – Lily Jul 7 at 14:25
vote up 2 vote down

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|flag
vote up 0 vote down

@Herms yes, I agree that regex is good for simple text finding. Can you provide an example that will find the word "here" in the following text?

<tag>here</tag>
<tag attr="here">test</tag>
<here>test</here>

Also, just so this question includes everything, I would like to hear some library recommendations as well.

link|flag
vote up 0 vote down

I am newbie to HTML parsing.. I knew Java and HTML pretty well.. I come to know that HTMLParser is an easy tool to work with.. But there is limited resources available to learn and use it.. Can anyone suggest me where to start ?..

link|flag
you should start a new question and reference this one. – Markus Lausberg Aug 20 at 8:30

Your Answer

Get an OpenID
or

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