Given the following XML,

<Container>
<Set >
<RecommendedCoverSong>Hurt by NiN - Johnny Cash</RecommendedCoverSong>
<RecommendedOriginalSong>She Like Electric by Smoosh</RecommendedOriginalSong>
<RecommendedDuetSong>Portland by Jack White and Loretta Lynn</RecommendedDuetSong>
<RecommendedGroupSong>SoS by Abba</RecommendedGroupSong>
<CoverSong>Kangaroo  by Big Star  - This Mortal Coil</CoverSong>
<OriginalSong>Pick up the Change by Wilco</OriginalSong>
<DuetSong>I am the Cosmos by Pete Yorn and Scarlett Johansen</DuetSong>
<GroupSong>Kitties Never Rest by Rex or Regina</GroupSong>
</Set>
</Container>

I'd like to grab two elements that include "Cover" in the tag, and then operate on each of them.

Nokogiri's use of Xpath easily allows the first query expression like so:

price_xml = doc_xml.xpath('Container/Set/*[contains(name(), "Cover")]')

I've selected all the elements (using *) in Set, and then used an Xpath Expression function:

contains, in order to specify that Adult must be in the name. This returns two Nokogiri XML Nodes in Nodeset.

What I wanted to do was then select one of these elements based on a pattern in the tagname use my favorite tool, Xpath.

But I just couldn't get Nokogiri to give it to me, and several solutions ending up selecting way more than the 1 element I wanted. (Because the nodes in the Nodeset still contain relationships with their parents)

songtypes = ['Cover', 'Original', 'Duet', 'Group']
songtypes.each do |song|

node_xml = doc.xpath('Container/Set/*[contains(name(), "Cover")]')
#I wanted to be able to do the following
#
FavoriteCover =  node_xml.xpath('./*[contains(name(), "Recommended")]')
RegularCover  =  node_xml.xpath('./*[not(contains(name(), "Recommended"))]')

#or
FavoriteCover =  node_xml.xpath('*[contains(name(), "Recommended")]')
RegularCover  =  node_xml.xpath('*[not(contains(name(), "Recommended"))]')
#But instead I had to resort to a Rails solution

RegularCover  =  node_xml.find{ |node| node.name !~ /Recommended/ }
FavoriteCover =  node_xml.find{ |node| node.name =~ /Recommended/ }

#Do something with the songs here

end

https://gist.github.com/1579343

link|improve this question

62% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Try something like:

node_xml.at_xpath('./self::*[not(contains(name(), "Recommended"))]')
node_xml.at_xpath('./self::*[contains(name(), "Recommended")]')

And consider using variables instead of constants inside iteration.

Or you can generate node name:

songtypes = ['Cover', 'Original', 'Duet', 'Group']
songtypes.each do |st|
  regular = doc.at_xpath("Container/Set/#{st}Song")
  recommended = doc.at_xpath("Container/Set/Recommended#{st}Song")
end
link|improve this answer
Two followup questions: 1) regarding variables versus constants? Are you referring to the Type Hash? songtypes = ['Cover', 'Original', 'Duet', 'Group'] 2) I coulnd't find any documentation on what the "self::"But that is awesome and just what I needed! Is that Xpath 2.0 only? – Ashley Raiteri Jan 9 at 17:27
1)I'm talking about constants FavoriteCover and RegularCover you used inside iteration. 2) That is a 1.0 feature described at w3.org/TR/xpath – taro Jan 10 at 9:41
feedback

Your Answer

 
or
required, but never shown

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