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 .upcased 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?

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 {...}

link|improve this question
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 '09 at 18:27
feedback

5 Answers

up vote 27 down vote accepted
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|improve this answer
That's it! Thanks very much for the astonishingly fast answer and update! :) – Adam Nonymous May 1 '09 at 18:28
2  
The first suggestion is not appropriate; modifying an enumerable element while iterating leads to undefined behavior - this is valid in other languages also. Here's a reply from Matz (he replies to an example using an Array, but the answer is generic): j.mp/tPOh2U – Marcus Dec 6 '11 at 15:01
@Marcus I agree that in general such modification should be avoided. But in this case it's probably safe, because the modification doesn't change future iterations. Now if another key (that wasn't the one passed to the block) was assigned, then there would be trouble. – Kelvin Mar 20 at 18:15
2  
@Adam @kch each_with_object is a more convenient version of inject when you don't want to end the block with the hash: my_hash.each_with_object({}) {|(k, v), h| h[k] = v.upcase } – Kelvin Mar 20 at 18:42
feedback

Try this function:

h = {"a" => "b", "c" => "d"}
h.each{|i,j| j.upcase!} # now contains {"a" => "B", "c" => "D"}.
link|improve this answer
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 '09 at 18:24
Good point, and with his update, your second solution (non-destructive) is the best. – Chris Doggett May 1 '09 at 18:28
feedback

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|improve this answer
This is quite clever too. Thanks! :) – Adam Nonymous May 2 '09 at 7:49
feedback

You can collect the values, and convert it from Array to Hash again.

Like this:

config = Hash[ config.collect {|k,v| [k.upcase, v] } ]
link|improve this answer
feedback

You may want to go a step further and do this on a nested hash. Certainly this happens a fair amount with Rails projects.

Here's some code to ensure a params hash is in UTF-8:

  def convert_hash hash
    hash.inject({}) do |h,(k,v)|
      if v.kind_of? String
        h[k] = to_utf8(v) 
      else
        h[k] = convert_hash(v)
      end
      h
    end      
  end    

  # Iconv UTF-8 helper
  # Converts strings into valid UTF-8
  #
  # @param [String] untrusted_string the string to convert to UTF-8
  # @return [String] your string in UTF-8
  def to_utf8 untrusted_string=""
    ic = Iconv.new('UTF-8//IGNORE', 'UTF-8')
    ic.iconv(untrusted_string + ' ')[0..-2]
  end  
link|improve this answer
feedback

Your Answer

 
or
required, but never shown