Help for this page

Select Code to Download


  1. or download this
    $worksheet->write($row, $col++, $_, $format) for @data;
    
  2. or download this
    for (@data) {
        if ($_ =~ m/^([+-]?)(?=\d|\.\d)\d*(\.\d*)?([Ee]([+-]?\d+))?$/){
    ...
            $worksheet->write($row, $col++, $_, $format)
        }
    }