Is there an easy way to convert a Nokogiri XML document to a Hash?
Something like Rails' Hash.from_xml.
|
Is there an easy way to convert a Nokogiri XML document to a Hash? Something like Rails'
| |||||
feedback
|
|
I use this code with libxml-ruby (1.1.3). I have not used nokogiri myself, but I understand that it uses libxml-ruby anyway. I would also encourage you to look at ROXML (http://github.com/Empact/roxml/tree) which maps xml elements to ruby objects; it is built atop libxml.
| |||||||||||
feedback
|
|
I posted a modified version of the Ashan Ali's code which works with attributes and uses Nokogiri | ||||
|
feedback
|
|
If you want to convert a Nokogiri xml document to a hash, just do the following hash = Hash.from_xml(nokogiri_document.to_s) | |||||||
feedback
|
|
I found this while trying to simply convert XML to Hash (not in Rails). I was thinking I would use Nokogiri, but ended up going with Nori https://github.com/rubiii/nori Then my code was trival:
| |||
|
feedback
|
|
Here's a far simpler version that creates a robust Hash that includes namespace information, both for elements and attributes:
Seen in action:
| ||||
|
feedback
|
|
| |||
|
feedback
|
|
Have a look at the simple mix-in I made for the Nokogiri XML Node. http://github.com/kuroir/Nokogiri-to-Hash Here's a usage example:
| |||
|
feedback
|
|
I did small modification to collapse :attributes into node content, it suits me better , thank a lot | |||
|
feedback
|
|
If the node you've selected in Nokogiri consists of only one tag, you can extract the keys, values and zip them into one hash, like so.
See http://www.ruby-forum.com/topic/125944 for more info on Ruby array merging. | |||
|
feedback
|