Help for this page

Select Code to Download


  1. or download this
    my @Fld = ( split /\t/ )[0,4];
    my $col = 0;
    foreach my $token (@Fld) {
    
  2. or download this
    my @fld_no = qw( 0 4 );
    my $row    = 0;
     # ...
      foreach my $idx (@fld_no) {
        $worksheet->write($row, $col, $fld[$idx]);