Help for this page

Select Code to Download


  1. or download this
    foreach $key1 (keys %hash) {
        foreach $key2 (keys %{$hash{$key1}}) {
            push(@Array, { key2_ => $hash{$key1}{$key2} });
    }
    
  2. or download this
    foreach $key1 (keys %hash) {
        push(@Array, \%{ $hash{$key1} });
    }