Help for this page

Select Code to Download


  1. 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
    
  2. or download this
          DECODE $cell_contents SOMEHOW
    
  3. or download this
      use Encode;
      my $octets = encode("iso-8859-1", $string);
      return( $octets );