in reply to Accessing Element in a Hash Reference

Close, $hash_ref->{'1'}->{'PointType'} or $hash_ref->{'1'}{'PointType'}

You have two levels, so you need two keys.

After Compline,
Zaxo

Replies are listed 'Best First'.
Re^2: Accessing Element in a Hash Reference
by awohld (Hermit) on Sep 14, 2005 at 07:53 UTC
    Wow, I guessed a structure close to that, my beginners Perl books don't have that info in them, maybe I'm finally getting out of "beginners" mode. :) Thanks