Help for this page

Select Code to Download


  1. or download this
        foreach $line (@lines){
            chomp $line;
    ...
            @$row = split(/,/, $line );
            push @$sheet2 , $row;
        }
    
  2. or download this
    my @sheet2 = ()
    
    ...
            @row = split(/,/, $line );
            push @sheet2 , \@row;
        }
    
  3. or download this
    @$sheet2 = ();
    
  4. or download this
    @sheet2 = ();
    
  5. or download this
    $sheet2 = [];