in reply to Hash Printing Question

something like
print "name is ", $hash{$foo}{"name"}, "\n";
or
my $thisname = $hash{$foo}{"name"}; print "name is $thisname\n";
works for me.

Replies are listed 'Best First'.
Re: Re: Hash Printing Question
by websavvy (Initiate) on Dec 01, 2000 at 01:37 UTC
    Thanks, folks. My programming habits had painted me into a corner.
    I had hoped that there would be an embarrassingly simple answer, and there was!
    Sankya, sankya, sankya.