Products Technologies Demo Docs Blog Support Company
TX Text Control 34.0 SP1 has been released - Learn more

Replace Words at the Input Position with Formatted Content from a Web API

Writing assistance and placeholder replacement are advanced features that help users create professional documents. This sample shows how to replace the word at the current input position with content retrieved from a Web API.

Replace Words at the Input Position with Formatted Content from a Web API

Writing assistance features significantly speed up the writing process by providing auto-correction, auto-completion, and key phrase replacement, saving time and reducing errors to create a professional document or letter. In particular, pre-designed and phrased sentences that are inserted frequently improve the user experience of such applications.

This sample shows how to replace the word at the current input position with content retrieved from a Web API.

Web API

To simulate the phrase replacement, the following Web API method ReplaceWord accepts a string and returns a value from a dictionary:

[HttpGet]
public IActionResult ReplaceWord(string word) {

  Dictionary<string, string> dict = new Dictionary<string, string>()
  {
     { "Word1", "<strong>Formatted</strong> replacement for <em>Word1</em>" },
     { "Word2", "<strong>Formatted</strong> replacement for <em>Word2</em>" },
     { "Word3", "<strong>Formatted</strong> replacement for <em>Word3</em>" }
  };

  return dict.ContainsKey(word) ? Ok(dict[word]) : Ok(null);
}

This Web API method is called from JavaScript in the asynchronous method replaceWord:

function replaceWord(word) {
  return new Promise(resolve => {
    $.get("home/replaceWord", { word: word })
      .done(data => resolve(data))
      .fail(() => resolve(null));
  });
}

Replacing the Selection

When the user presses F8, the word at the input position is selected and retrieved. This word is then sent to the Web API to retrieve the replacement string. This string will eventually be loaded into the selection to replace the current string.

TXTextControl.addEventListener("textControlLoaded", async function () {
    document.addEventListener("keydown", logKey);

    async function logKey(e) {
        if (e.key === "F8") {
            const text = await getTextFromSelection();
            const replacedText = await replaceWord(text);

            if (replacedText !== undefined) {
                await loadReplacedText(replacedText);
            }
        }
    }

    function getTextFromSelection() {
        return new Promise(resolve => {
            TXTextControl.selectWord(() => {
                TXTextControl.selection.getText(text => resolve(text));
            });
        });
    }

    async function loadReplacedText(replacedText) {
        const encodedText = btoa(replacedText);
        await TXTextControl.selection.load(TXTextControl.StreamType.HTMLFormat, encodedText);
    }
});

The following screen video shows the replacement in action.

Phrase replacement

You can test this yourself by downloading the Visual Studio project from our GitHub repository.

Stay in the loop!

Subscribe to the newsletter to receive the latest updates.

GitHub

Download and Fork This Sample on GitHub

We proudly host our sample code on github.com/TextControl.

Please fork and contribute.

Download ZIP

Open on GitHub

Open in Visual Studio

Requirements for this sample

  • Visual Studio 2022
  • TX Text Control .NET Server 31.0

ASP.NET

Integrate document processing into your applications to create documents such as PDFs and MS Word documents, including client-side document editing, viewing, and electronic signatures.

ASP.NET Core
Angular
Blazor
JavaScript
React
  • Angular
  • Blazor
  • React
  • JavaScript
  • ASP.NET MVC, ASP.NET Core, and WebForms

Learn more Trial token Download trial

Related Posts

ASP.NETASP.NET CoreElectronic Signatures

Preparing Documents for Electronic Signatures using MailMerge in C#

There are many benefits to using MS Word compatible templates to prepare documents for electronic signature capture. This article shows how to use MailMerge to prepare documents for the signing…


ASP.NETASP.NET CoreMIME

Why Defining MIME Types for PDF/A Attachments Is Essential

The PDF/A standard was created to ensure the long-term reliable archiving of digital documents. An important aspect of the standard involves properly handling embedded files and attachments within…


ASP.NETASP.NET CorePDF

Validate Digital Signatures and the Integrity of PDF Documents in C# .NET

Learn how to validate digital signatures and the integrity of PDF documents using the PDF Validation component from TX Text Control in C# .NET. Ensure the authenticity and compliance of your…


ASP.NETASP.NET CorePDF

Validate PDF/UA Documents and Verify Electronic Signatures in C# .NET

The new TXTextControl.PDF.Validation NuGet package enables you to validate PDF/UA documents and verify digital signatures directly in your code without relying on third-party tools or external…


ASP.NETASP.NET CoreC#

How To Choose the Right C# PDF Generation Library: Developer Checklist

To make your choice easy, this guide provides a systematic evaluation framework for two library categories: basic and enterprise PDF libraries. It covers matching features to use cases, evaluating…

Summarize this blog post with:

Share on this blog post on: