for my $ref ( @records ) { if ($ref->{URL}) { print qq{Webpage: $ref->{URL}
}; } } #### for my $ref ( grep $_->{URL}, @records ) { print qq{Webpage: $ref->{URL}
}; }