Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.ruby > #2810
| From | jake kaiden <jakekaiden@yahoo.com> |
|---|---|
| Newsgroups | comp.lang.ruby |
| Subject | Re: Help on hashing multiple keys and values |
| Date | 2011-04-13 20:37 -0500 |
| Organization | Service de news de lacave.net |
| Message-ID | <6984da73c3b6617ec9cac39da9a26b37@ruby-forum.com> (permalink) |
| References | <e7079548e51ac6677d70c58dba0b2fd3@ruby-forum.com> |
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 | Next — Previous in thread | Next in thread | Find similar | Unroll 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