You can use Docotic.Pdf library to search for text in PDF files.
Following sample shows how to find specified strings in a PDF file and corresponding page numbers:
static void searchForTextStrings()
{
string path = "";
string[] stringsToFind = new string[] { };
using (PdfDocument pdf = new PdfDocument(path))
{
for (int i = 0; i < pdf.Pages.Count; i++)
{
string pageText = pdf.Pages[i].GetText();
foreach (string s in stringsToFind)
{
int index = pageText.IndexOf(s, 0, StringComparison.CurrentCultureIgnoreCase);
if (index != -1)
Console.WriteLine("'{0}' found on page {1}", s, i);
}
}
}
}
A case-sensitive search can be conducted if you remove third argument of IndexOf method.
Docotic.Pdf is free for non-commercial applications.
Disclaimer: I work for Bit Miracle, vendor of the library.