in reply to reading from a textfile
open(FILE, "<myfile.txt"); while(<FILE>) { if(/Testnok/ .. /\>/) { print "$_"; } } close(FILE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: reading from a textfile
by bory (Beadle) on Jun 15, 2004 at 06:32 UTC | |
by davidj (Priest) on Jun 15, 2004 at 11:33 UTC |