in reply to Print list value from foreach loop

Put:

next unless $objItem->{Description} eq "Logical Fixed Drive";

as the first line of your foreach loop.


DWIM is Perl's answer to Gödel

Replies are listed 'Best First'.
Re^2: Print list value from foreach loop
by Bennco99 (Acolyte) on Aug 09, 2006 at 22:32 UTC
    That did it. Thank you very much.