Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm new to Nokogiri, so how do I parse the "data" and it's text, as well as the "name" from the "method" in the following xml:

<get_escalators_response status="200" status_text="OK">
<escalator id="6181e65d-8ba0-4937-9c44-8f2b10b0def7">
 <name>Team alert</name>
 <comment/>
 <in_use>1</in_use>
 <condition>
   Threat level at least
   <data>
     High
     <name>level</name>
   </data>
 </condition>
 <event>
   Task run status changed
   <data>
     Done
     <name>status</name>
   </data>
 </event>
 <method>
   Email
   <data>
     team@example.org
     <name>to_address</name>
   </data>
   <data>
     admin@example.org
     <name>from_address</name>
   </data>
   <data>
     0
     <name>notice</name>
   </data>
 </method>
</escalator>
...
</get_escalators_response>
share|improve this question

2 Answers

up vote 0 down vote accepted

There's several ways to do this, here's one:

doc = Nokogiri::XML("your_xml_document")
doc.search("data").each do |data|
  name = data.search("name").remove # remove the name element from data element
  name_text = name.text
  data_text = data.text
  # do stuff with text
end

Edit

You can search for specific nested elements like this:

doc.search("method > data").each do |data|
  # do stuff
end
share|improve this answer
Thanks, but what if I just want to grab name/data from "method" and not "condition" or "event" ? – cLee Jun 5 '11 at 21:50
Nevermind, doc.search("method/data").each do |data| ... seems to work. thanks again – cLee Jun 5 '11 at 21:54

Assigning your XML to a variable called xml, I'd go about it like this:

require 'nokogiri'
require 'pp'

doc = Nokogiri::XML(xml)
pp doc.search('//method/data').map{ |n| n.text.scan(/\S+/) }

Notice this is returning an array of arrays. It'd be easy to coerce the data into strings or hashes.

# >> [["team@example.org", "to_address"],
# >>  ["admin@example.org", "from_address"],
# >>  ["0", "notice"]]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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