Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: force elements in XML::Smart

by gube (Parson)
on Apr 24, 2007 at 03:39 UTC ( [id://611641]=note: print w/replies, xml ) Need Help??


in reply to force elements in XML::Smart

Hi

You can use XML::Simple module it will be simple. To parse xml or to create xml you can simply use XML::Simple.
use strict; use warnings; use XML::Simple; use Data::Dumper; my $xml_input = qq{<Body><Foo>Bar</Foo></Body>}; my $xml_simple = XML::Simple->new(KeepRoot => 1, KeyAttr => 1, ForceAr +ray => 1); my $result = $xml_simple->XMLin($xml_input); print "\nParsed xml with output as reference..", Dumper($result); my $result_xml = $xml_simple->XMLout($result); print "\nConstructed xml using reference..", $result_xml;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-03-19 04:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found