like DOMDocument class in PHP, is there any class in RUBY (i.e the core RUBY), to parse and get node elements value from a HTML Document.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There is no built-in HTML parser (yet), but some very good ones are available, in particular Nokogiri. Meta-answer: For common needs like these, I'd recommend checking out the Ruby Toolbox site. You'll notice that Nokogiri is the top recommendation for HTML parsers |
||||
|
|
|
You should check out hpricot. It's exceedingly good. It's not 'core' ruby, but it's a commonly used gem. |
|||
|
|