in reply to How to reterive the values from hashes

Your DUMPER output indicates that %count does contain the information you expect.

The problem is how you are extracting it.

Both $c and $c1 are being set to the same value, in your code "$count{$key}".
Instead, try:

foreach my $key(%count){ my $c = $key; my $c1 = $count{$key}; print "$c = $c1\n"; # Or more directly, print "$key = $count{$key}\n"; }

             My goal ... to kill off the slow brain cells that are holding me back from synergizing my knowledge of vertically integrated mobile platforms in local cloud-based content management system datafication.