Help for this page

Select Code to Download


  1. or download this
    my $file = 'data.txt';
    open READ, $file || die "Cannot open $file: $!\n";
    ...
    foreach (keys %hash){
        print $_, "\t", %hash->{$_}[1], "\t", %hash->{$_}[2], "\n";
    }