in reply to Re: Counting Elements output from Data::Dumper
in thread Counting Elements output from Data::Dumper
print scalar @{$VAR1->{'LOGENTRY'}};
this returned an error due to the use of strict, but:
print scalar @{$config->{'LOGENTRY'}};
Returns: 4
THANKS A LOT!!
|
|---|