Tagged Questions
5
votes
2answers
539 views
Ruby convert single quotes to double quotes in XML
Despite the fact that XML attributs can be defined using single or double quotes, my user is trying to integrate my software with another one that will not accept single quoted attribut values.
I ...
1
vote
1answer
429 views
Parse xml file with rails REXML?
How can i parse this xml file ?
<resultset>
−<row>
<field name="Table Name">table_1</field>
<field name="Quant of Rows">2</field>
<field name="Total Size ...
1
vote
1answer
199 views
Iterative Parsing XML
Just getting started with Ruby and have a newbie question re parsing XML. I'm trying REXML (yes, I know hpricot and others exist, but I am starting with REXML to learn.) The problem is how to ...
0
votes
1answer
26 views
each_element not behaving as expected
When I'm in irb and I do something like this:
node_list.each_element { |e| puts e.text }
It works and prints one line of text per element returned (plus I think it returns the xml object). ...
0
votes
2answers
177 views
Ruby REXML: Get Value Of An XML Element
I am trying to put the values of some xml elements into an array using rexml. Here is an example of what I am doing:
doc = Document.new("<data><title>This is one ...
0
votes
1answer
125 views
Parse XML POST data with Rails
I'm using REXML to parse through some XML data sent via POST. The XML is sent correctly formatted with "&" sent as "&". However, when I try to parse it, I had problems like the & ...