As was indicated to you, using the 'keys' keyword in scalar context can tell you about how many keys are there in the hash, the number of values will be similar of course to the number of keys, but to have a count of values in a way that is more sensible you will need to filter out the undefined values and return only those that are defined, in this context, using
grep in conjunction with
defined is a good way to go
use strict;
use warnings;
my %hash = (
'name'=>'hisham',
'keyword'=>undef,
'place'=>'the Monastery'
);
my $key_count = keys %hash;
my $value_count = grep {defined} values %hash;
print $key_count,"\n";
print $value_count,"\n";
David R. Gergen said "We know that second terms have historically been marred by hubris and by scandal." and I am a two y.o. monk today :D, June,12th, 2011...