From: Ted Flethuseo Date: 2011-04-10T06:39:57+09:00 Subject: Re: Reading XML to relational tables Hi Jesus, Thank you for your help. Right now I am stuck trying to traverse the elements in a single xml::element. I know I can use this elements method to list the elements, but I am not sure how I can traverse through them and get their contents individually. xml = File.read('translateXML.xml') doc = Nokogiri::XML(xml) # split into sentences first arr = doc.search('p') puts arr[0].elements -- Posted via http://www.ruby-forum.com/.