Help for this page

Select Code to Download


  1. or download this
        $hash{$col1}{$col2 . '_' . $col3} = "$col4\t$col5"
    
  2. or download this
        for my $c1 (keys %hash) {
            for my $c2_c3 (keys %{$hash{$c1}}) {
    ...
                }
            }
        }