Help for this page

Select Code to Download


  1. or download this
    chomp @$_ for @array;
    # or
    chomp map @$_, @array;
    
  2. or download this
    chomp map $_->[2], @array;
    
  3. or download this
    while (<FILE>) {
        next if /^#/ or tr/\t// != 6;
        chomp;
        push @array, [ split "\t" ];
    }