Buonasera
a questo link
ho trovato questo
##########################
require ‘rubygems’
require ‘libxml’
include LibXML
class PostCallbacks
include XML::SaxParser::Callbacks
def on_start_element(element, attributes)
if element == ‘row’
# Process row of data here
end
end
end
parser = XML::SaxParser.file(“posts.xml”)
parser.callbacks = PostCallbacks.new
parser.parse
#####################################
potete farmi un esempio chiaro di che cosa mettere al posto di
Process row of data here
per ottenere i valori tra i tag che su google non ho trovato un
accidente di esempio ??
grazie mille