Computer Science Canada Hashes... |
Author: | Sorb [ Thu Dec 14, 2006 7:16 am ] |
Post subject: | Hashes... |
I'm a bit new to ruby and I'm currently struggling over hashes. I can create a hash from scratch just fine with 2 => "robot" and all that however what I'm wanting to do is read a txt then create a hash of the information within. i.e. it says 1 John Smith 25 UK 2 Fred O'Neill 31 UK I'd want it so in the hash I have a few 1s with John, Smith, 25 and UK and 2s with Fred's data. The most I can get however right now is just taking out one of the pieces of data and shoving it into a string. All attempts to make a hash are failing... How would I do this? |
Author: | Sorb [ Thu Dec 14, 2006 8:11 am ] |
Post subject: | |
hmm can't edit... What I mean basically is I want to create a 2d array where I can somehow later in the code put in what ever code is relevant to compare the natioanlity (UK for these two). I can pass one value into a array each so for 1 it will give me John. Any further though and though it seems to accept 1 => Smith I cannot retrieve that Smith in anyway. |
Author: | rdrake [ Thu Dec 14, 2006 12:37 pm ] | ||||
Post subject: | Re: Hashes... | ||||
Sorb wrote: I'm a bit new to ruby and I'm currently struggling over hashes.
Something tells me a hash is not what you want.... A hash stores a value, but it gives us a nice, pretty name in order to access that value. Take this, for example.
I can create a hash from scratch just fine with 2 => "robot" and all that however what I'm wanting to do is read a txt then create a hash of the information within. i.e. it says 1 John Smith 25 UK 2 Fred O'Neill 31 UK I'd want it so in the hash I have a few 1s with John, Smith, 25 and UK and 2s with Fred's data. The most I can get however right now is just taking out one of the pieces of data and shoving it into a string. All attempts to make a hash are failing... How would I do this?
What you could potentially do is store all information inside of a hash, then create an array of the hash. Take this, for example.
![]() |
Author: | wtd [ Thu Dec 14, 2006 12:46 pm ] | ||||
Post subject: | |||||
Something like...? Note: I do this because I highly doubt Ruby is for a school assignment.
Then you could get Fred's age with something like:
|