in reply to Size of a HASH (with more keys)
my $count = keys %{ $testHash{$year} }
It might be better not to output the comma, though. Just invert the logic and print it before each sequence except the first one which is easy to detect:
my $first = 1; while (...) { print ',' unless $first; undef $first; print "..."; # print the sentence }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Size of a HASH (with more keys)
by David92 (Sexton) on Jul 02, 2014 at 12:30 UTC |