DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Fetching A REXML Element Attribute
Source: <a href="http://snippets.dzone.com/posts/show/9279">Modifying a REXML attribute</a> [dzone.com]
require 'rexml/document'
include REXML
doc = Document.new("<root><breakfast type='continental'/></root>")
breakfast = doc.root.elements['breakfast']
breakfast_type = breakfast.attribute('type')
puts breakfast_type.value





