Thread Map Verständnisproblem?
(26 answers)
Opened by crojay at 2011-06-16 00:28
du hast ein map kein grep.
Du willst: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 #!/usr/bin/perl use strict; use warnings; my $file='C:\temp\input.txt'; open(my $fh,'<',$file) or die("ERROR open $file ($!)\n"); my @content = <$fh>; close $fh; my @cleanedContent = grep { chomp && /^->/ } @content; print scalar(@cleanedContent) . " --> größe des cleanedContent\n"; Nutze strict und warnings dann fallen auch so Fehler wie @cleanedContent vs. $cleanedContent auf. |