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

Gast Gast
 2006-05-17 13:33
#7599 #7599
Hallo,

In diesem Teil hier muss irgendwo der fehler stecken.
Er setzt irgendwie nich die DICTFILE Variable.

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
&loadDictionary( "words.txt" );


sub loadDictionary {

 my( $DICTFILE ) = $_[0];
 my( @lines );

 # Read in the dictionary into memory
 print "Reading file '$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 = ();


[quote]Couldn't open file at C:/Programme/xampp/htdocs/drow/convertDictionary.pl line 22.
Quote


Könnte da jemand helfen ?

View full thread Problem mit dem Einlesen