Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re: A data structure for XML generation

by ctilmes (Vicar)
on Aug 12, 2009 at 17:45 UTC ( [id://787993]=note: print w/replies, xml ) Need Help??


in reply to A data structure for XML generation

It would complicate your parsing a bit, but I think you could have an even simpler format by omitting an extra layer of array for sibling nodes (just use them for children). The structure translation would still be unambiguous.

[ family => { name => 'Kawasaki' }, [ father => 'Yasushisa' , mother => { hair => 'short'} => 'Chizuko' , children => [ girl => 'Shiori', boy => { hair => 'black' } => 'Yasuke', boy => 'Kairi' ] ] ]
<family name="Kawasaki"> <father>Yasuhisa</father> <mother hair="short">Chizuko</mother> <children> <girl>Shiori</girl> <boy hair="black">Yusuke</boy> <boy>Kairi</boy> </children> </family>

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://787993]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (1)
As of 2024-04-25 01:19 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found