my $hashRef = $arrayOfHashes[0]; my @hashKeys = keys %$hashRef; # or more realistically ... for my $key ( keys %$hashRef ) { something involving $hashRef->{$key}; }