Thread Problem mit dem Einlesen (55 answers)
Opened by Gast at 2006-05-17 13:33

renee
 2006-05-17 17:24
#7605 #7605
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
if(-f $DICTFILE and -r $DICTFILE){
open( DICTFILE, "$DICTFILE" ) || die( "Couldn't open file" );
my( @filelines ) = <DICTFILE>;
close( DICTFILE );
foreach $line (@filelines) {
push( @lines, $line ) if( $line =~ m/\w/ );
}
@filelines = ();
}
else{
print "kann $DICTFILE nicht lesen/finden";
}
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 Problem mit dem Einlesen