Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Outputting a hash as XML

by rg0now (Chaplain)
on Mar 15, 2005 at 10:46 UTC ( [id://439580]=note: print w/replies, xml ) Need Help??


in reply to Outputting a hash as XML

I think what you want to use here is the NoAttr option of XML::Simple. This inhibits the generated XML to contain attributes and all hash key/values will be represented as nested elements instead.
use warnings; use strict; use XML::Simple; my $hash = { name => 'bob', value1 => 'blah', value2 => 'blah2', }; my $xs = new XML::Simple; my $xml = $xs->XMLout($hash, NoAttr => 1, RootName=>'newPhone', ); print $xml; __END__ <newPhone> <name>bob</name> <value1>blah</value1> <value2>blah2</value2> </newPhone>
The sad truth is that XML::Simple options can somewhat paradoxically get really convoluted, but is is really useful for tasks of similar kind...

rg0now

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-20 02:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found