Help for this page

Select Code to Download


  1. or download this
    my @a;
    while (<INFILE>) {
      my @line = split /\t/;
      push @a, \@line; # Array of array references
    }
    
  2. or download this
    my @a;
    push @a, ( split /\t/ ) while (<INFILE>); # array of arrays