Help for this page

Select Code to Download


  1. or download this
        my $key = (split/\t/, $line)[0];
        push @{ $hash2{$key} }, $line;
    
  2. or download this
        my ($val, $key) = split /\t/, $line;
        push @{ $hash2{$key} }, $val;