in reply to determine a hash key
$hash{key1} = [1,2]; $hash{key2} = [1]; foreach (keys %hash){ $k = scalar @{$hash{$_}}; } [download]
Artist