Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

To add a new pair to Hash I do:

{:a => 1, :b => 2}.merge!({:c => 3})   # => {:a=>1, :b=>2, :c=>3}

Is there a similar way to delete a key from Hash ?

This works:

{:a => 1, :b => 2}.reject!{ |k| k == :a }   # => {:b=>2}

but I would expect to have something like:

{:a => 1, :b => 2}.delete!(:a)   # => {:b=>2}

It is important that the returning value will be the remaining hash, so I could do things like:

foo(my_hash.reject!{ |k| k == my_key }

in one line.

share|improve this question
1  
You can always extend (open at runtime) the built in Hash to add this custom method if you really need it. – dbryson Jun 3 '11 at 13:45

7 Answers

up vote 77 down vote accepted

Rails has an except/except! method that returns the hash with those keys removed. If you're already using Rails, there's no sense in creating your own version of this.

class Hash
  # Return a hash that includes everything but the given keys. This is useful for
  # limiting a set of parameters to everything but a few known toggles:
  #
  #   @person.update_attributes(params[:person].except(:admin))
  #
  # If the receiver responds to +convert_key+, the method is called on each of the
  # arguments. This allows +except+ to play nice with hashes with indifferent access
  # for instance:
  #
  #   {:a => 1}.with_indifferent_access.except(:a)  # => {}
  #   {:a => 1}.with_indifferent_access.except("a") # => {}
  #
  def except(*keys)
    dup.except!(*keys)
  end

  # Replaces the hash without the given keys.
  def except!(*keys)
    keys.each { |key| delete(key) }
    self
  end
end
share|improve this answer
Perfect if you're using rails! – trevorturk Jul 20 '12 at 2:29
3  
This answer should be accepted as correct. The question did specify Rails! – user1158559 Nov 28 '12 at 14:25

Oneliner plain ruby, it works only with ruby > 1.9.x:

1.9.3p0 :002 > h = {:a => 1, :b => 2}
 => {:a=>1, :b=>2} 
1.9.3p0 :003 > h.tap { |hs| hs.delete(:a) }
 => {:b=>2} 

Tap method always return the object on which is invoked...

Otherwise if you have required active_support/core_ext/hash (which is automatically required in every Rails application) you can use one of the following methods depending on your needs:

➜  ~  irb
1.9.3p125 :001 > require 'active_support/core_ext/hash' => true 
1.9.3p125 :002 > h = {:a => 1, :b => 2, :c => 3}
 => {:a=>1, :b=>2, :c=>3} 
1.9.3p125 :003 > h.except(:a)
 => {:b=>2, :c=>3} 
1.9.3p125 :004 > h.slice(:a)
 => {:a=>1} 

except uses a blacklist approach, so it removes all the keys listed as args, while slice uses a whitelist approach, so it removes all keys that aren't listed as arguments. There also exist the bang version of those method (except! and slice!) which modify the given hash but their return value is different both of them return an hash. It represents the removed keys for slice! and the keys that are kept for the except!:

1.9.3p125 :011 > {:a => 1, :b => 2, :c => 3}.except!(:a)
 => {:b=>2, :c=>3} 
1.9.3p125 :012 > {:a => 1, :b => 2, :c => 3}.slice!(:a)
 => {:b=>2, :c=>3} 
share|improve this answer
Great answer. Btw, tap and delete work in my ree-1.8.7. – clacke Apr 19 at 6:12
#in lib/core_extensions.rb
class Hash
  #pass single or array of keys, which will be removed, returning the remaining hash
  def remove!(*keys)
    keys.each{|key| self.delete(key) }
    self
  end

  #non-destructive version
  def remove(*keys)
    self.dup.remove!(*keys)
  end
end

#in config/initializers/app_environment.rb (or anywhere in config/initializers)
require 'core_extensions'

I've set this up so that .remove returns a copy of the hash with the keys removed, while remove! modifies the hash itself. This is in keeping with ruby conventions. eg, from the console

>> hash = {:a => 1, :b => 2}
=> {:b=>2, :a=>1}
>> hash.remove(:a)
=> {:b=>2}
>> hash
=> {:b=>2, :a=>1}
>> hash.remove!(:a)
=> {:b=>2}
>> hash
=> {:b=>2}
>> hash.remove!(:a, :b)
=> {}
share|improve this answer
27  
This is built into Rails as except/except! – Beerlington Jun 19 '12 at 22:22

Why not just use:

hash.delete(key)
share|improve this answer
4  
Because it returns the deleted value rather than the remaining hash. – Misha Moroshko Jun 3 '11 at 13:27
2  
@Misha Why does it matter what it returns? The Hash will have the key deleted. – ghoppe Jun 3 '11 at 13:28
But you're changing the Hash in place. So you have the remaining hash. – dbryson Jun 3 '11 at 13:29
7  
@Misha In reality, trying to save 1 line of code will probably end up making your code more complicated in the end. – dbryson Jun 3 '11 at 13:42
1  
I guess the name "delete" implies it's destructive. – dbryson Jun 3 '11 at 13:57
show 5 more comments

You can use except! from the facets gem:

>> require 'facets' # or require 'facets/hash/except'
=> true
>> {:a => 1, :b => 2}.except(:a)
=> {:b=>2}

The original hash does not change.

EDIT: as Russel says, facets has some hidden issues and is not completely API-compatible with ActiveSupport. On the other side ActiveSupport is not as complete as facets. In the end, I'd use AS and let the edge cases in your code.

share|improve this answer
Just what I needed - thanks! – Houen Dec 13 '11 at 15:50
and you can use except! as well and the change is permanent – sNiCKY Nov 30 '12 at 11:43
1  
facets is a trap! – Russell Dec 8 '12 at 14:14
Agreed! Since a long time I haven't used them, now that ActiveSupport is much lighter and modular. – rewritten Dec 10 '12 at 21:29

in pure Ruby:

{:a => 1, :b => 2}.tap{|x| x.delete(:a)}   # => {:b=>2}
share|improve this answer

If you want to use pure Ruby (no Rails), don't want to create extension methods (maybe you need this only in one or two places and don't want to pollute namespace with tons of methods) and don't want to edit hash in place (i.e., you're fan of functional programming like me), you can 'select':

>> x = {:a => 1, :b => 2, :c => 3}
=> {:a=>1, :b=>2, :c=>3}
>> x.select{|x| x != :a}
=> {:b=>2, :c=>3}
>> x.select{|x| ![:a, :b].include?(x)}
=> {:c=>3}
>> x
=> {:a=>1, :b=>2, :c=>3}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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