In .Net, I found this great library, HtmlAgilityPack that allows you to easily parse non-well-formed HTML using XPath. I've used this for a couple years in my .Net sites, but I've had to settle for more painful libraries for my Python, Ruby and other projects. Is anyone aware of similar libraries for other languages?
|
|
In python, ElementTidy parses tag soup and produces an element tree, which allows querying using XPath:
|
||
|
|
|
|
BeautifulSoup is a good Python library for dealing with messy HTML in clean ways. |
||
|
|
|
|
It seems the question could be more precisely stated as "How to convert HTML to XML so that XPath expressions can be evaluated against it". Here are two good tools:
|
||
|
|
|
|
An outstanding achievement is the pure XSLT 2.0 Parser of HTML written by David Carlisle. Reading its code would be a great learning exercise for everyone of us. From the description: "d:htmlparse(string) Read a more detailed description here. Hope this helped. Cheers, Dimitre Novatchev. |
||
|
|
|
|
For Ruby, I highly recommend Hpricot that Jb Evain pointed out. If you're looking for a faster libxml-based competitor, Nokogiri (see http://tenderlovemaking.com/2008/10/30/nokogiri-is-released/) is pretty good too (it supports both XPath and CSS searches like Hpricot but is faster). There's a basic wiki and some benchmarks. |
||
|
|
|
|
There is a free C implementation for XML called libxml2 which has some api bits for XPath which I have used with great success which you can specify HTML as the document being loaded. This had worked for me for some less than perfect HTML documents.. For the most part, XPath is most useful when the inbound HTML is properly coded and can be read 'like an xml document'. You may want to consider using a utility that is specific to this purpose for cleaning up HTML documents. Here is one example: http://tidy.sourceforge.net/ As far as these XPath tools go- you will likely find that most implementations are actually based on pre-existing C or C++ libraries such as libxml2. |
||
|
|
