- or download this
my @True;
for my $Element (@Array){
...
push @True, $Element;
}
}
- or download this
my @True = grep {$_} @Array;
- or download this
#(For every fourth element in @List)
grep {not ++$i % 4} @List;
#(To skip every fifth element)
grep {++$i % 5} (1..50)