in reply to Perl Project: Text Search

if anybody could give me a hint as to how to get started on this, I'd be very much in your debt

Read your course notes! Ok, these are the steps:
open the file
Use a while loop to read a line from the file handle
Within the loop, split the line around the field delimiter, extracting the relevant columns.
Test the data found against that required. If found, leave the loop.
Outside the loop, close the file handle
print the result.

Replies are listed 'Best First'.
Re^2: Perl Project: Text Search
by Sharp (Initiate) on Apr 08, 2010 at 12:34 UTC
    You sir are a scholar and a gentleman, thank you very much. I will come back and post my code when I get something up.