I am working on a school project that has several pdf files. There should be a search by name functionality that I just type in the student\'s name and all the pdf files wit
I think your task may be split as follows:
To build index you may use some integrated solution like Apache Lucene or Lucene.Net or convert each PDF into text and build index from the text yourselves.
Other two steps are fairly trivial and depend on language/technology used in first step.
Your question is tagged as related to .NET, so you may try Docotic.Pdf library for index building (disclaimer: I work for Bit Miracle).
Docotic.Pdf may be used to extract text from PDF files as plain text or as collection of text chunks with coordinates for each chunk.