my @emails = ({"id" => "1", "name" => "Foo", "email" => "me\@foo.com"}, {"id"=>"2", "name" => "Bar", "email" => "bar\@foo.com"} ); foreach (@emails) { print $_->{"email"}; }