vote up 1 vote down star

Hi!

I'd like to replace each value in a hash with value.some_method.

For example in a simple hash {"a" => "b", "c" => "d"} every value should be .upcase-d so it looks like {"a" => "B", "c" => "D"}.

I tried #collect and #map but always just get arrays back. Is there an 'elegant' way to do this?

Thanks in advance,

Adam Nonymous

UPDATE: Damn, I forgot: The hash is in an instance variable which should not be changed. I need a new hash with the changed values, but would prefer not to define that variable explicitly and then loop over the hash filling it. Something like new_hash = hash.magic {...} ;)

flag
the second example in my answer returns a new hash. comment on it if you want me to expand on the magic that #inject is doing. – kch May 1 at 18:27

3 Answers

vote up 6 vote down check
my_hash.each { |k, v| my_hash[k] = v.upcase }

or, if you'd prefer to do it non-destructively, and return a new hash instead of modifying my_hash:

a_new_hash = my_hash.inject({}) { |h, (k, v)| h[k] = v.upcase; h }

This last version has the added benefit that you could transform the keys too.

link|flag
That's it! Thanks very much for the astonishingly fast answer and update! :) – Adam Nonymous May 1 at 18:28
vote up 3 vote down
h = {"a" => "b", "c" => "d"}
h.each{|i,j| j.upcase!} # now contains {"a" => "B", "c" => "D"}.
link|flag
that's good, but it should be noted that it only works for when j has a destructive method that acts unto itself. So it can't handle the general value.some_method case. – kch May 1 at 18:24
Good point, and with his update, your second solution (non-destructive) is the best. – Chris Doggett May 1 at 18:28
vote up 0 vote down

I do something like this:

new_hash = Hash[*original_hash.collect{|key,value| [key,value + 1]}.flatten]

This provides you with the facilities to transform the key or value via any expression also (and it's non-destructive, of course).

link|flag
This is quite clever too. Thanks! :) – Adam Nonymous May 2 at 7:49

Your Answer

Get an OpenID
or

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