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

Re: XML::Simple Output

by Chmrr (Vicar)
on Nov 19, 2003 at 00:32 UTC ( [id://308200]=note: print w/replies, xml ) Need Help??


in reply to XML::Simple Output

Check out the noattr option to XMLout:

% perl -w use XML::Simple; $xml = XMLin("pre.xml"); $xml->{core}->{test} = 'testeroo'; print XMLout($xml, noattr => 1); ^D <opt> <core> <test>testeroo</test> <variable>ere</variable> </core> </opt> <

Update: You may also be interested in the rootname => 'config' option.

Networking -- only one letter away from not working

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (2)
As of 2024-04-26 06:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found