xmlsimple: prevent folding multiple elements into array?

S

slothbear

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.
 
W

Weston Mr. campbell

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.
 
S

slothbear

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,008
Latest member
HaroldDark

Latest Threads

Top