- or download this
my $zip = Archive::Zip->new( $infile );
my $content = $zip->contents('content.xml');
...
foreach my $cell_contents (@{$row}){
next unless defined( $cell_contents );
DECODE $cell_contents SOMEHOW
- or download this
DECODE $cell_contents SOMEHOW
- or download this
use Encode;
my $octets = encode("iso-8859-1", $string);
return( $octets );