Which one would you choose? My important attributes are (not in order)

  1. Support & Future enhancements
  2. Community & general knowledge base (on the Internet)
  3. Comprehensive (i.e proven to parse a wide range of *.*ml pages)
  4. Performance
  5. Memory Footprint (runtime, not the code-base)
link|improve this question

feedback

3 Answers

up vote 21 down vote accepted

Pick nokogiri, for at least points 1-4, I don't know about (5).

It is way more popular than hpricot. See ruby-toolbox, among others.

link|improve this answer
feedback

Only pick hpricot if you don't have or can't install libxml on the computer you're using. If this is not the case then choose nokogiri, it's better in the 5 mentioned attributes than hpricot.

link|improve this answer
7  
Since literally a couple of minutes ago, there's also a pure-Java version of Nokogiri. So, you can use Nokogiri on JRuby without FFI and without libxml. (Google App Engine is one example where FFI is not possible.) – Jörg W Mittag May 22 '10 at 19:47
feedback

The case where I've found Hpricot to be useful is in dealing with broken HTML that you need to remain broken after processing. Hpricot is good about modifying only the portion of a document you have updated. Unless this is needed, Nokogiri is the way to go.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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