in reply to Re: Dereferencing Hash of Array
in thread Dereferencing Hash of Array

Thanks for the reply, but that returns the same result as the code that I posted.

Replies are listed 'Best First'.
Re: Re: Re: Dereferencing Hash of Array
by mr.nick (Chaplain) on Feb 20, 2001 at 20:51 UTC
    Sorry, my mistake, I didn't see the double arrays. Something like this will work:
    foreach (@{$no_priv_matches{$group}}) { for my $x (@$_) { print "$x "; } }