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

XeroX
 2006-05-19 13:34
#7623 #7623
User since
2006-05-17
27 Artikel
BenutzerIn
[default_avatar]
Hmm...sehr komisch. Die Datei liegt ja eigentlich im Verzeichnis. Ich versteh das nicht...die Datei liegt im selben Verzeichnis.

Couldn't open file at C:/Programme/xampp/htdocs/drow/convertDictionary.pl line 27.

Line 27 ist Fett/Kursiv

Quote
&loadDictionary( "words.txt" );


sub loadDictionary {

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

require FindBin;
$DICTFILE = $FindBin::Bin . $DICTFILE;
#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 = ();
\n\n

<!--EDIT|XeroX|1148031344-->

View full thread Problem mit dem Einlesen