in reply to Re^6: Perl Hashes, keys under keys (I think)?
in thread Perl Hashes, keys under keys (I think)?


Hey hbm,

Ok... So I think I figuerd it out.

Instead of this --> length($rec3) I tried using this --> length($records{ $rec1 }{ $rec2 }{ $rec3 })
And it seems like its working now!

I took me a little bit but finally realized that, length($rec3), was giving me the length of the key and not the value.


Thanks,
Matt


.