in reply to Match nothing in grep { ! // }

my @p = grep { defined $_ && $_ ne '' } @arr;

McA