in reply to XML::Simple "transforming data"
Here's the set of options that I found the best (for my usage, and probably for general usage) for XML::Simple:
Hope it helps.my $obj = XMLin($filename, ForceArray => 1, ForceContent => 1, KeepRoo +t => 1, ContentKey => '_c', KeyAttr => []); open(OUT, ">$filename-1"); print OUT XMLout($obj, KeepRoot => 1, ContentKey => '_c', KeyAttr => [ +]);
|
---|