[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

xmlsimple: prevent folding multiple elements into array?

slothbear

7/17/2007 1:42:00 AM

I have some xml that represents a somewhat weirdly formed hash.
XmlSimple is eating some of my structure.

INPUT:
<kern>
<map>
<key>
state
</key>
<string>
open
</string>
<key>
rate
</key>
<time>
daily
</time>
<key>
duration
</key>
<time>
monthly
</time>
</map>
</kern>

XmlSimple.xml_in(xml, {'ForceArray'=>false})

OUTPUT:
{"map"=> {
"time"=>["daily", "monthly"],
"key"=>["state", "rate", "duration"],
"string"=>"open"
}
}

With the arrays folded that way, there's no way for me to tell that
the value of "state" is "open". I don't really care about the
"datatypes". I'm aiming at a single level hash something like this:

DESIRED:
{"map"=> {
"state" => "open,
"rate" => "daily",
"duration" => "monthly"
}
}

I can't really change the odd incoming XML, but I'm happy to process
any Ruby data structure that hasn't lost some of my order/structure.
All of the options around folding appear to affect only attributes,
but I have only elements.

2 Answers

Weston Mr. campbell

7/17/2007 2:12:00 AM

0

Man, wish I could help you there. The problem is that the only languages
that I have been able to work with XML in are ActionScript and Java...
and Ruby really doesn't look like either, not to mention I can't even
seem to find some decent tutorials that explain it...

Oh well, sorry for taking up space on this thread. But perchance, you
may want to investigate the REXML library that comes with Ruby. It's
just an alternative to XMLSimple.


--
Posted via http://www.ruby-....

slothbear

7/20/2007 12:31:00 AM

0

Thanks for the thoughts! I figured I would have to move to REXML
eventually, and I guess it's time. thanks again.