in reply to Re: Perl Hash Files
in thread Perl Hash Files

foreach my $hour (map { sprintf "%02d", $_ } 0 .. 23) { # Do Stuff Here }
No need to use sprintf there, just use strings:
foreach my $hour ( '00' .. '23' ) { # Do Stuff Here }