views:

70

answers:

2

Hi all,

I need to parse html for a project and looking for a good html parser or an API providing conversion from html to xml.

Waiting for suggestions...

Thanks All...

+1  A: 

HTML Agility Pack is very good

S.Mark
A: 

The HTML Agility Pack is a .NET library that parses HTML files. The parser is very tolerant with "real world" malformed HTML. The object model is very similar to System.Xml.XmlDocument, but for HTML documents. It supports XPath and XSLT.

Lachlan Roche