Fellow Monks:

I'm looking for a way to read a file with records such as follows:

ID|LastName|FirstName|TimeIN|TimeOUT 0001|Flintstone|Fred|0900|1300 0001|Flintstone|Fred|0900|1100 0001|Flintstone|Fred|1200|1630 0002|Flintstone|Wilma|0900|1500 0002|Flintstone|Fred|0930|1100 0003|Rubble|Barney|0900|1100
I would like to take these and using a hash for each unique ID, build an array of hashes within it for the other fields. I came up with the following and it does not work. I'm hoping one the enlightened ones could help me. I know that I'm just being really dense here but I spent all afternoon yesterday trying to figure it out and it never seems to quite work. Please Help..... and tell me what I'm doing wrong. Humbly yours - Mick
#load the data... while(<FILE>){ chomp; @result = split (/\|/); my @rec = ({LastName=>$result[1], FirstName=>$result[2], TimeIN=>$ +result[3], TimeOUT=>$result[4]}); $thisrecord = \@rec; push @{$ID{$result[0]}},$thisrecord; } close(FILE); #print the data foreach $key(sort keys %ID){ print "$key\n"; foreach (@{$ID{$key}}){ print "$_->{gender}\n"; } }

In reply to Nested Data Structure Problems by mrmick

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.