in reply to Not in order in Hash output

Just like arrays, hash return their elements in the order they are physically arranged in the hash. Hashes differ from arrays in that one cannot control the order in which elements are arranged, and the order can change whenever the number of hash element changes.

Replies are listed 'Best First'.
Re^2: Not in order in Hash output
by perl_walker (Novice) on Oct 11, 2012 at 12:34 UTC

    Try this,

    use strict; use warnings; use Tie::IxHash; my %hash1 = (); tie %hash1, "Tie::IxHash"; %hash1 = ("a",1,"b",2,"c",3,"d",4); while (my@values = each(%hash1)){ print "The key/value pair is @values \n"; }