- or download this
<?xml version="1.0" encoding="ISO-8859-1"?>...
- or download this
my $url = 'https://some.url/file.xml';
my $LWP_Data;
...
use XML::Simple qw(:strict);
my $ref = XMLin( $xml, ForceArray => 1,KeyAttr => [ ]);
...
- or download this
my $url = 'https://some.url/file.xml';
my $LWP_Data;
...
Encode::from_to($ref ->{$key}, "UTF-8", "iso-8859-1");
}
...