Help for this page

Select Code to Download


  1. or download this
    my $oExcel = new Spreadsheet::XLSX ;
    my $oBook = $oExcel->Parse( $filename) ;
    
  2. or download this
    my $oBook = Spreadsheet::XLSX->new($filename);
    
  3. or download this
    sub xls2csv {
       my ($filename, $regions, $rotate) = @_ ;
    ...
       
       return $output ;
    }