The Artima Developer Community
Sponsored Link

Ruby Buzz Forum
Selecting matching key/value pairs from a hash

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Matthew Bass

Posts: 468
Nickname: pelargir
Registered: Dec, 2005

Jared Richardson and Matthew Bass are independent software consultants
Selecting matching key/value pairs from a hash Posted: Mar 5, 2007 7:42 PM
Reply to this message Reply

This post originated from an RSS feed registered with Ruby Buzz by Matthew Bass.
Original Post: Selecting matching key/value pairs from a hash
Feed Title: Pelargir
Feed URL: http://feeds.feedburner.com/pelargir/
Feed Description: Musings on software and life from Matthew Bass. Regular posts on new web products, tips and tricks, etc.
Latest Ruby Buzz Posts
Latest Ruby Buzz Posts by Matthew Bass
Latest Posts From Pelargir

Advertisement
I ran into a situation today where I needed to pull out all key/value pairs from a hash that matched the keys in a pre-existing array. This is what I initially came up with: hash = { :foo => "foo", :bar => "bar", :bat => "bat" } hash.symbolize_keys.reject { |k, v| ![:foo, :bar].include?(k) }   >>> returns { :foo [...]

Read: Selecting matching key/value pairs from a hash

Topic: Poor Man's Breakpoint Previous Topic   Next Topic Topic: Evoluci��n de la Web

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use