vote up 6 vote down star
9

I'm looking for a library/method to parse an html file with more html specific features than generic xml parsing libraries.

flag

9 Answers

vote up 8 vote down check

You could use TidyNet.Tidy to convert the HTML to XHTML, and then use an XML parser.

Another alternative would be to use the builtin engine mshtml:

using mshtml;
...
object[] oPageText = { html };
HTMLDocument doc = new HTMLDocumentClass();
IHTMLDocument2 doc2 = (IHTMLDocument2)doc;
doc2.write(oPageText);

This allows you to use javascript-like functions like getElementById()

link|flag
This is a really good solution. – Frank Krueger Sep 11 '08 at 11:06
1  
Call me crazy, but I am having trouble figuring out how to use mshtml. Do you have any good links? – GordonG Jan 9 at 5:52
vote up 0 vote down

Use WatiN if you need to see the impact of JS on the page [and you're prepared to start a browser]

link|flag
vote up 0 vote down

I've linked code here that will give you "LINQ to HTML" functionality

http://stackoverflow.com/questions/100358/looking-for-c-html-parser/624410#624410

link|flag
vote up 3 vote down

You can do a lot without going nuts on 3rd-party products and mshtml (i.e. interop). use the System.Windows.Forms.WebBrowser. From there, you can do such things as "GetElementById" on an HtmlDocument or "GetElementsByTagName" on HtmlElements. If you want to actually inteface with the browser (simulate button clicks for example), you can use a little reflection (imo a lesser evil than Interop) to do it:

var wb = new WebBrowser() ... tell the browser to navigate (tangential to this question). Then on the Document_Completed event you can simulate clicks like this.

var doc = wb.Browser.Document var elem = doc.GetElementById(elementId); object obj = elem.DomElement; System.Reflection.MethodInfo mi = obj.GetType().GetMethod("click"); mi.Invoke(obj, new object[0]);

you can do similar reflection stuff to submit forms, etc.

Enjoy.

link|flag
vote up 2 vote down

I think @Erlend's use of HTMLDocument is the best way to go. However, I have also had good luck using this simple library:

SgmlReader

link|flag
vote up 2 vote down

I'm not sure about "best" but I'd start here:

Html Agility Pack

This will probably give you what you need.

link|flag
vote up 8 vote down

I used the HTMLAgilityPack on a project for a previous employer and it was pretty effective. It wasn't foolproof, but it did handle most of the malformed tags, etc. that you find on the web these days.

link|flag
Very handy library, thanks... And much easier for me to figure out than the mshtml. – GordonG Jan 9 at 9:22
vote up 0 vote down

The trouble with parsing HTML is that it isn't an exact science. If it was XHTML that you were parsing, then things would be a lot easier (as you mention you could use a general XML parser). Because HTML isn't necessarily well-formed XML you will come into lots of problems trying to parse it. It almost needs to be done on a site-by-site basis.

link|flag
vote up 0 vote down

You could use a HTML DTD, and the generic XML parsing libraries.

link|flag
Can you clarify this? – Luke Sep 11 '08 at 9:44
Very few real-world HTML pages will survive an XML parsing library. – Frank Krueger Sep 11 '08 at 11:07

Your Answer

Get an OpenID
or

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