@jobs = ({'job1'='17:30'},{'job2'='17:31'}); #to access this data which is, I expect, what you need to know, you would do something like this foreach $job(@jobs){ foreach $key (keys(%$job)){ print "$key = ".$key->{$key}."\n"; } }