Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. carthoris5

    Searching through files in a directory

    The information I'm searching through as a line that reads "DOI: 02 NOV 06" I have my program set up to searh for it using the grep function: @thefile = infile; @date = grep(/DOI: {9}/, @thefile); but it retuns 0 results. can anyone explain this to me?
  2. carthoris5

    Searching through files in a directory

    I am trying to write a perl program that will search for specific information in every file in the specified directory. opendir(a, '.'); @t = readdir(a); foreach $filename (@t) { open (infile, '$filename'); while (infile) { i am then using grep to search for the information. when I...

Part and Inventory Search

Back
Top