I have a hash like this:

{
 1=>["a", "b"], 
 2=>["c"], 
 3=>["a", "d", "f", "g"], 
 4=>["q"]
}

How can I iterate it in order to get:

1-----

a

b

2-----

c

3-----

a 

d

f

g
link|improve this question
3  
This shouldn't be a community wiki – Brian Ramsay Aug 4 '09 at 13:37
If you're iterating a hash and expecting it to be ordered, you probably need to use some other collection type – Allen Aug 4 '09 at 13:49
can i pass the hash values as radio button option?? – sts Aug 4 '09 at 13:58
am passing the hash as radio button option .. but for the first option am getting radio button, for other values am not getting it. – sts Aug 4 '09 at 14:10
1  
@Allen: Hashes are ordered in Ruby 1.9. Rails also provides an OrderedHash (that it uses only sparingly) if you're on Ruby <1.9. See culann.com/2008/01/rails-goodies-activesupportorderedhash – James A. Rosen Aug 4 '09 at 15:25
feedback

4 Answers

hash.keys.sort.each do |key|
  puts "#{key}-----"
  hash[key].each { |val| puts val }
end
link|improve this answer
feedback
hash.each do |key, array|
  puts "#{key}-----"
  puts array
end

Regarding order I should add, that in 1.8 the items will be iterated in random order (well, actually in an order defined by Fixnum's hashing function), while in 1.9 it will be iterated in the order of the literal.

link|improve this answer
feedback

Calling sort on a hash converts it into nested arrays and then sorts them by key, so all you need is this:

puts h.sort.map {|k,v| ["#{k}----"] + v}

And if you don't actually need the "----" part, it can be just:

puts h.sort
link|improve this answer
The hash keys are numbers, so '[k + "----"]' raises a TypeError (String can't be coerced into Fixnum). You need '[k.to_s + "----"]' – glenn jackman Aug 4 '09 at 19:35
True enough. I had letters in my test version. Fixed, using the even better "#{k}----". – glenn mcdonald Aug 5 '09 at 2:22
feedback

Hashes aren't ordered.

link|improve this answer
4  
That depends on your Ruby version. – James A. Rosen Aug 4 '09 at 15:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.