in reply to Re^2: problem with string substitution output
in thread problem with string substitution output
Unsuccessful open on filename containing newline at test.pl line 18This tells you that have to remove the newlines from the lines you are reading from your file list:
while (<DFFILE>) { chomp; # remove newline at the end. ($value, $key) = split(/\t/, $_); $lijst{$key} = $value; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: problem with string substitution output
by Anonymous Monk on May 23, 2008 at 16:39 UTC | |
by moritz (Cardinal) on May 23, 2008 at 16:46 UTC |