Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.ruby > #2802
| From | jake kaiden <jakekaiden@yahoo.com> |
|---|---|
| Newsgroups | comp.lang.ruby |
| Subject | Re: Help on hashing multiple keys and values |
| Date | 2011-04-13 18:59 -0500 |
| Organization | Service de news de lacave.net |
| Message-ID | <b832c76db626dc3107816701eed0e754@ruby-forum.com> (permalink) |
| References | <e7079548e51ac6677d70c58dba0b2fd3@ruby-forum.com> |
Adam Adam wrote in post #992620:
> I'm trying to create a hash with multiple values per key from a tab
> delimited file. numbers_and_colors.txt example:
>
>The idiom I use is to add an array to hold the values, like this:
>(name_hash[key] ||= []) << value
hi adam -
i do what clifford does, but since i'm thick-headed i do it a bit more
verbosely (is that a word?)...
foo = Hash.new{|key, value| key[value] = []}
this sets up a hash, where each key's value is an array (you can also
get all crazy, and make each value a hash...) once you've got that set,
play around with this kind of stuff...
foo ["rays"] = %W[alpha beta gamma]
foo ["planets"] = %W[mercury venus earth mars]
foo ["colors"] = %W[red orange yellow green blue indigo violet]
p foo
p foo.length
p foo ["rays"][1]
p foo ["planets"][-1]
p foo ["colors"].length
- 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