Help for this page

Select Code to Download


  1. or download this
    my %hash = make_me_a_hash;
    my @key_order = qw[key1 key2 key3 key4];
    my $packformat = "ABCDEFGH";
    my $packed_str = pack $packformat, map {$_, $hash{$_}} @key_order;
    
  2. or download this
    my %hash = unpack $packformat, $packed_str;