in reply to XML::Simple is doing too much for me! Help please.
With Keeproot:my $xml_obj = XML::Simple->new(Keeproot => 1);
#!/usr/bin/perl use strict; use XML::Simple; use Data::Dumper; my $xml_obj = XML::Simple->new(Keeproot => 1, ForceArray => ['campaign +']); # xml my $xml = $xml_obj->XMLin('test.xml'); print Dumper($xml); my $out = $xml_obj->XMLout($xml); print Dumper($out); exit; ---------------------------------------------------------- $VAR1 = { 'campaign' => [ { 'menuid' => '10118-2', 'action' => '0', 'phonenumbers' => { 'phonenumber' => { 'number' +=> '4167781583', 'prompts' + => { + 'prompt' => { + 'tts' => 'Hello, this is a test.', + 'promptid' => '2' + } + }, 'callid' +=> '1234abc' } } } ] }; $VAR1 = '<campaign action="0" menuid="10118-2"> <phonenumbers name="phonenumber" callid="1234abc" number="4167781583 +"> <prompts name="prompt" promptid="2" tts="Hello, this is a test." / +> </phonenumbers> </campaign> ';
#!/usr/bin/perl use strict; use XML::Simple; use Data::Dumper; my $xml_obj = XML::Simple->new(ForceArray => ['campaign']); # xml my $xml = $xml_obj->XMLin('test.xml'); print Dumper($xml); my $out = $xml_obj->XMLout($xml); print Dumper($out); exit; ------------------------------------------------------ $VAR1 = { 'menuid' => '10118-2', 'action' => '0', 'phonenumbers' => { 'phonenumber' => { 'number' => '4167781583', 'prompts' => { 'prompt' => +{ +'tts' => 'Hello, this is a test.', +'promptid' => '2' } }, 'callid' => '1234abc' } } }; $VAR1 = '<opt action="0" menuid="10118-2"> <phonenumbers name="phonenumber" callid="1234abc" number="4167781583 +"> <prompts name="prompt" promptid="2" tts="Hello, this is a test." / +> </phonenumbers> </opt> ';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: XML::Simple is doing too much for me! Help please.
by jdtoronto (Prior) on Jul 15, 2005 at 19:10 UTC | |
by izut (Chaplain) on Jul 15, 2005 at 19:29 UTC | |
by jdtoronto (Prior) on Jul 15, 2005 at 19:42 UTC |