Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
        }
        $row++;
    }
    
  2. or download this
    for (@data) {
        chop;
    ...
            $worksheet->write($row, $col++, $_, $format)
        }
    }
    
  3. or download this
    s/\0//g for @data;
    
  4. or download this
    y/\0// for @data;