in reply to Best way to remove elem of for loop

Have a look at grep:

@ar = grep { -d $_ } @ar;

Replies are listed 'Best First'.
Re^2: Best way to remove elem of for loop
by Preceptor (Deacon) on Apr 24, 2014 at 14:45 UTC

    Hmm, that's good. I had made the link between 'map' and 'grep' being similar, but it hadn't sunk in that you can apply an EXPR to grep, as well as a pattern.