Thread Map Verständnisproblem? (26 answers)
Opened by crojay at 2011-06-16 00:28

renee
 2011-06-16 09:36
#149643 #149643
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
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/

View full thread Map Verständnisproblem?