[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Nokogiri XML::NodeSet#search behavior

Trans

6/6/2009 6:52:00 PM

Can a Nokogiri NodeSet not be searched? There is a #search method but
it doesn't seem to work as I would expect it too.

require 'nokogiri'

xml = Nokogiri::XML <<-EOS
<root><x><m id="a" class="q">dummy</m><n id="b" class="q">dummy</
n></x></root>
EOS

nodeset = xml.search('.q')

p nodeset
<m id="a" class="q">dummy</m><n id="b" class="q">dummy</n>

p nodeset.search('#a')
=> nil

T.