lvanhout has asked for the wisdom of the Perl Monks concerning the following question:
Lanesample 1: while(<FILE>) { if($_ eq "testpoint\n") { last; } } sample 2: while(<FILE>) { if(/testpoint/) { last; } } File contents being read: <begin file> This is a test file data at the front of file more test data testpoint data after the test Last line <end of file>
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: File search question
by neilwatson (Priest) on Jun 25, 2004 at 14:48 UTC | |
Re: File search question
by davido (Cardinal) on Jun 25, 2004 at 15:22 UTC | |
Re: File search question
by graff (Chancellor) on Jun 26, 2004 at 04:08 UTC | |
Re: File search question
by lvanhout (Curate) on Jun 26, 2004 at 04:26 UTC |