「Ruby入門」XPathを使用してXMLドキュメントを検索するプログラム

rubyコード:
xml = %{
<aquarium>
<fish color="blue" size="small" />
<fish color="orange" size="large">
<fish color="green" size="small">
<fish color="red" size="tiny" />
</fish>
</fish>
<decoration type="castle" style="gaudy">
<algae color="green" />
</decoration>
</aquarium>}

require 'rexml/document’
doc = REXML::Document.new xml

p doc.elements['//fish’]
# => <fish size=’small’ color=’blue’/>

Development

Posted by arkgame