John66NY
0
Q:

perl hash size

# Perl 

# syntax 
keys %<hash-name>

# example
my %weekly_temperature = (
    monday    => 65, 
    tuesday   => 68,
    wednesday => 71, 
    thursday  => 53, 
    friday    => 60,
);

my $size = keys %weekly_temperature;
print "Size of hash:" . $size;  #[OUTPUT-->Size of hash:5]
1

New to Communities?

Join the community