On Jul 13, Mal Beaton said:

>%users
>
>$users{abc}{$user}
>
>foreach $user (keys %{users{abc}}){

You're missing the $ here.

  foreach my $user (keys %{ $users{abc} }) {
    my $fc = substr($user, 0, 1);
    # ...
  }

-- 
Jeff "japhy" Pinyan      [EMAIL PROTECTED]      http://www.pobox.com/~japhy/
I am Marillion, the wielder of Ringril, known as Hesinaur, the Winter-Sun.
Are you a Monk?  http://www.perlmonks.com/     http://forums.perlguru.com/
Perl Programmer at RiskMetrics Group, Inc.     http://www.riskmetrics.com/
Acacia Fraternity, Rensselaer Chapter.         Brother #734
**      Manning Publications, Co, is publishing my Perl Regex book      **

Reply via email to