in reply to Re^4: reading lines from a text file
in thread reading lines from a text file
while($line=<FH>) { print("outer: $line"); while($nextline=<FH>) { print("inner: $nextline"); } print("finished inner\n"); } print("finished outer\n");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: reading lines from a text file
by baxy77bax (Deacon) on Dec 27, 2008 at 11:36 UTC |