in reply to
better way to find list members?
#!/usr/bin/perl #blow off this aray #@ary = qw(1 2 3 4 5 6 7); #set up the aray this way; %keray = qw(1 2 3 4 5 6); for(%keray){ if (/2/){ print "$_\n"; } } # sub disappers
Comment on
RE: better way to find list members?
In Section
Seekers of Perl Wisdom