in reply to Re^4: Hash Value via Data::Dumper
in thread Hash Value via Data::Dumper
untested as there is no perl on my ipad...
for $uid (keys %users) { print "User $uid has "; for my $conn (@{$users{$uid}}) { my $number = @{$searches{$conn}}; print "$number searches on connection $conn\n"; } } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: Hash Value via Data::Dumper
by Anneq (Vicar) on Jun 13, 2013 at 20:19 UTC |