search for: xml_info

Displaying 1 result from an estimated 1 matches for "xml_info".

Did you mean: xl_info
2010 Mar 26
2
How to read a xml file?
...gt;Alguna de por ahi #12</direccion> </ficha> </fichas> ------------------------------------------------------- And I have this RoR source: ------------------------------------------------------- require "rexml/document" include REXML doc = Document.new File.new("xml_info.xml") first_name = Array.new last_name = Array.new address = Array.new n = 0 doc.elements.each("a/b/first") { |name| first_name << name.text.to_s n += 1 } doc.elements.each("a/b/last") { |name| last_name << name.text.to_s } doc.elements.each("...