Thread Nur bestimmte Werte aus einer Liste ausgeben
(3 answers)
Opened by Wild.Card at 2018-01-22 19:41
Das Pendant zu grep() wäre wohl:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #!/usr/bin/perl use warnings; use strict; my @array = (1 .. 15); my @result = (); my $i; foreach $i (@array) { if ($i > 5 && $i < 12) { push(@result, $i); } } foreach $i (@result) { print "$i\n"; } |