in reply to Accessing Hashes

You want the keys of the hashes, then, correct?

foreach my $key (keys %{$hash{test}}){ print $key."\n"; }

Update: You'll want to read perlfunc:keys

C-.

Replies are listed 'Best First'.
Re: Re: Accessing Hashes
by metlhed_ (Beadle) on Dec 17, 2001 at 06:53 UTC
    Yes, thats exacly what I wanted, thanks.