Thread Map Verständnisproblem?
(26 answers)
Opened by crojay at 2011-06-16 00:28
Um unnötigen Speicher und unnötige Operationen zu vermeiden, würde ich das direkt beim Einlesen berücksichtigen:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #!/usr/bin/perl use strict; use warnings; my $file='C:\temp\input.txt'; my @content; open(my $fh,'<',$file) or die("ERROR open $file ($!)\n"); while ( my $line = <$fh> ) { next if $line =~ m{\A#}; next if $line =~ m{\A\s*\z}; push @content, $line; } close $fh; print scalar(@cleanedContent) . " --> größe des cleanedContent\n"; OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |