Products Technologies Demo Docs Blog Support Company

Searching Strings in PDF Documents

TX Text Control can import born-digital PDF documents for viewing, editing, and format conversion. By combining ServerTextControl with LINQ and regular expressions, developers can programmatically search for string patterns within PDFs and retrieve all matching index positions.

Searching Strings in PDF Documents
Searching strings in PDF documents

TX Text Control is not only able to load and modify MS Word documents such as DOC, RTF and DOCX files. TX Text Control is also able to import "born digital" PDF documents, so that you can view, edit or convert these files.

An overview of the features and the possibilities can be read here:

PDF Reflow - Load, view, edit and convert Adobe PDF files

The combination of ServerTextControl, LINQ and regular expressions provides a powerful tool to search strings in PDF documents. The method FindInPDF listed below accepts a PDF document as a file path and a value to seek. ServerTextControl opens the PDF in order to provide the plain text to a regular expression.

The resulting MatchCollection of the Matches method is used by LINQ to return the index of each individual result that are stored in an IEnumerable<int> object.

private IEnumerable<int> FindInPDF(string path, string value)
{
    string sSourceString = "";

    // create a temporary ServerTextControl that imports the PDF file
    using (TXTextControl.ServerTextControl tx =
        new TXTextControl.ServerTextControl())
    {
        TXTextControl.LoadSettings ls= new TXTextControl.LoadSettings();
        ls.PDFImportSettings = TXTextControl.PDFImportSettings.GenerateLines;

        tx.Create();
        tx.Load(path, TXTextControl.StreamType.AdobePDF, ls);

        // prepare the string to match the numbers of
        // control chartacters
        sSourceString = tx.Text.Replace("
","
"); 
    }

    // use RegEx and LINQ to match the strings and to return the ID
    return
        Regex.Matches(sSourceString, value).Cast<Match>().Select(m => m.Index);
}

The following code returns all index positions of the string "text" in a PDF document:

IEnumerable<int> index = FindInPDF("test.pdf", "text");

Stay in the loop!

Subscribe to the newsletter to receive the latest updates.

Related Posts

PDFTutorial

Create Password Protected and Signed Adobe PDF and PDF/A Documents

TX Text Control includes a PDF engine that creates documents with automatic paging, table breaks, headers, and footers. It converts RTF, DOC, DOCX, and HTML to PDF, imports existing PDFs, and…


AI TokensASP.NET CoreDocument Conversion

Stop Burning Tokens to Convert your Documents

This article covers converting your source documents to Markdown on the way in and rendering the Markdown into a polished PDF on the way out. TX Text Control handles both conversions directly in…


ASP.NETAIASP.NET Core

AI Natural Language Document Generation with MCP and TX Text Control .NET

This article explains how AI agents can use natural language to create documents through an MCP server. Instead of letting a language model generate documents directly, the AI translates prompts…


ASP.NETReportingASP.NET Core

C# Document Generation: A Developer's Guide for .NET

Document generation refers to the automatic creation of documents from application data. The success or complexity of a document generation workflow often depends on a single early architectural…


ASP.NETAccessibilityASP.NET Core

Validating PDF/UA Documents in .NET C#: A Practical Guide

This article explains how to validate PDF/UA documents in .NET C# using the TXTextControl.PDF.Validation NuGet package. It shows how to inspect validation status, generate JSON reports, handle…

Share on this blog post on: