I'm looking for a library/method to parse an html file with more html specific features than generic xml parsing libraries.
|
|
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:
This allows you to use javascript-like functions like getElementById() |
||||||
|
|
|
Use WatiN if you need to see the impact of JS on the page [and you're prepared to start a browser] |
||
|
|
|
|
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 |
||
|
|
|
|
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. |
||
|
|
|
|
I think @Erlend's use of |
||
|
|
|
|
I'm not sure about "best" but I'd start here: This will probably give you what you need. |
||
|
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
|
You could use a HTML DTD, and the generic XML parsing libraries. |
||||
|
