Hello,

Did you mean:
for(keys(%data)){
   print "$_ = $data{$_}\n";
} 

or you actually meant the assignment print $_ = $data{$_};

Aziz,,,

In article <1A191D5C8A79D511A7A800306E05E9FC067398@EXCHANGE_SERVER>,
"Chris Rutledge" <[EMAIL PROTECTED]> wrote:

> John,
> 
>       That works much better than before, however, when i try to spin
> through the hash via...
> 
> 
>       for (keys(%data))
>       {
> 
>               print $_ = $data{$_};
>       }
> 
> 
>       that only seems to get the data for the first hash passed to
> %data.....%data = ( %one, %two, %three, %four );.
>       BUT if I call for a specific key from %two, %three, or %four I can
> get the data...i.e.
> 
>       print $data{KEY_FROM_TWO}
> 
>       I get the data I'm looking for.
> 
> 
> Thanks,
> Chris

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to