in reply to Re: Count values in a hash
in thread Count values in a hash

Thank you very much, toolic.

Does @{ $hash{$k} } work as a reference? What does  @{} do?

Replies are listed 'Best First'.
Re^3: Count values in a hash
by toolic (Bishop) on Jan 11, 2011 at 18:05 UTC
      Ah, okay. Then this explains why the array did not work in my case. I need to dereference it as to work on it. Thanks for the links, I'll check them out now. I guess a good knowledge of using references in Perl would help me solve many of my problems.