Help for this page

Select Code to Download


  1. or download this
    my @lines = map { chomp; [split] } <SHEET>;
    
  2. or download this
    my @lines;
    chomp, push @lines, [split] for <SHEET>;
    
  3. or download this
    my @lines = map [split], <$sheet>;
    
  4. or download this
    my @lines;
    push @lines, [split] while <$sheet>;