http://www.perlmonks.org?node_id=589860


in reply to Re: Forcing to anonymous array in XML::simple
in thread Forcing to anonymous array in XML::simple

Thank you.
I have one more question. I tested more pairs in the hash and the option noattr=>1 (that I realized I need to use). When I run:
use strict; use warnings; use XML::Simple;use Data::Dumper; my $file = './test.xml'; my %tmp = ( A => [ [1] ], B => 1); XMLout(\%tmp,outputfile=>$file,noattr=>1); %tmp = %{XMLin($file,forcearray=>['A'],noattr=>1)}; warn Dumper(\%tmp); %tmp = %{XMLin($file,forcearray=>1,noattr=>1)}; warn Dumper(\%tmp);
I get:
$VAR1 = { 'A' => [ { 'anon' => '1' } ], 'B' => '1' }; $VAR1 = { 'A' => [ [ '1' ] ], 'B' => [ '1' ] };
is it correct that I cannot get A value as array and B value as scalar ?, i.e.:
$VAR1 = { 'A' => [ [ '1' ] ], 'B' => '1' };