Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.ruby > #2810

Re: Help on hashing multiple keys and values

Path csiph.com!x330-a1.tempe.blueboxinc.net!feeder1.hal-mli.net!feeder.news-service.com!feeder.news-service.com!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!feeds.phibee-telecom.net!talisker.lacave.net!lacave.net!not-for-mail
From jake kaiden <jakekaiden@yahoo.com>
Newsgroups comp.lang.ruby
Subject Re: Help on hashing multiple keys and values
Date Wed, 13 Apr 2011 20:37:28 -0500
Organization Service de news de lacave.net
Lines 28
Message-ID <6984da73c3b6617ec9cac39da9a26b37@ruby-forum.com> (permalink)
References <e7079548e51ac6677d70c58dba0b2fd3@ruby-forum.com>
NNTP-Posting-Host bristol.highgroove.com
Content-Type text/plain; charset=UTF-8
Content-Transfer-Encoding 7bit
X-Trace talisker.lacave.net 1302745065 60141 65.111.164.187 (14 Apr 2011 01:37:45 GMT)
X-Complaints-To abuse@lacave.net
NNTP-Posting-Date Thu, 14 Apr 2011 01:37:45 +0000 (UTC)
In-Reply-To <e7079548e51ac6677d70c58dba0b2fd3@ruby-forum.com>
X-Received-From This message has been automatically forwarded from the ruby-talk mailing list by a gateway at comp.lang.ruby. If it is SPAM, it did not originate at comp.lang.ruby. Please report the original sender, and not us. Thanks! For more details about this gateway, please visit: http://blog.grayproductions.net/categories/the_gateway
X-Mail-Count 381488
X-Ml-Name ruby-talk
X-Rubymirror Yes
X-Ruby-Talk <6984da73c3b6617ec9cac39da9a26b37@ruby-forum.com>
Xref x330-a1.tempe.blueboxinc.net comp.lang.ruby:2810

Show key headers only | View raw


hey adam -

  think i finally figured out what you were trying to do - sorry for not 
reading your first post a little more carefully...  try this:

hash = Hash.new{|key, value| key[value] = []}
file = File.open("hashtext.txt", 'r')
file.each do |line|
        line.chomp!
  parts = line.split(/\t/)
  hash ["#{parts[0]}"] << "#{parts[1]}"
end
file.close

p hash["1"]
p hash ["2"]
p hash ["3"]

=> ["red"]
   ["blue", "green"]
   ["red"]


 - j

-- 
Posted via http://www.ruby-forum.com/.

Back to comp.lang.ruby | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Help on hashing multiple keys and values Adam Adam <adam_sateriale@yahoo.com> - 2011-04-13 18:33 -0500
  Re: Help on hashing multiple keys and values Clifford Heath <no@spam.please.net> - 2011-04-14 09:36 +1000
  Re: Help on hashing multiple keys and values jake kaiden <jakekaiden@yahoo.com> - 2011-04-13 18:59 -0500
  Re: Help on hashing multiple keys and values Adam Adam <adam_sateriale@yahoo.com> - 2011-04-13 19:46 -0500
    Re: Help on hashing multiple keys and values Clifford Heath <no@spam.please.net> - 2011-04-14 11:15 +1000
      Re: Help on hashing multiple keys and values jake kaiden <jakekaiden@yahoo.com> - 2011-04-13 21:05 -0500
  Re: Help on hashing multiple keys and values jake kaiden <jakekaiden@yahoo.com> - 2011-04-13 20:37 -0500
  Re: Help on hashing multiple keys and values Adam Adam <adam_sateriale@yahoo.com> - 2011-04-13 21:13 -0500
  Re: Help on hashing multiple keys and values "WJ" <w_a_x_man@yahoo.com> - 2011-04-17 16:30 +0000

csiph-web