En

Find Homophones in Multiple Files in Java

Synonyms are words with similar meaning, and Homophones sounds the same but are different in meanings or spellings. We learned to find synonyms in multiple documents using Java. Today, in this article, we will see how to search homophones within multiple documents using Java.
January 13, 2022 · 3 min · Shoaib Khan

Find Homophones in Multiple Files using C#

Words that sound the same but are different in meanings or spellings are Homophones. Whereas, the words that spell the same, but differ in meaning or pronunciation are HomographsHomonyms can either be homophone or homograph; or both. Let us not confuse and automate it. In this article, you will learn how to search homophones within multiple documents using C#.
January 4, 2022 · 3 min · Shoaib Khan

Search Synonyms in Multiple Files using Java

We recently have discussed, [how to get all the synonyms of any word][1]. It would be wonderful if we could locate these synonyms within many different documents. In this article, we will see how to search any word and its synonyms in multiple files using Java.
October 3, 2021 · 4 min · Shoaib Khan

Find Synonyms of Words using Java

Avoid the repetition of the same word; use Synonyms (two different words that mean the same). What if you need to find all such synonyms of any word programmatically? This article guides you on how to find out all the synonyms of any word using Java. Similarly, a single word could have multiple meanings. We will see how the synonyms can be grouped according to different meanings of that same word.
September 30, 2021 · 3 min · Shoaib Khan

Search Synonyms in Multiple Files using C#

In an other article we have seen that what are synonyms, and how to get all the synonyms of any word. What about find these synonyms with in different documents. This article will guide you about how to search the synonyms of any specific query (word) in multiple files using C#.
September 17, 2021 · 3 min · Shoaib Khan

Find Synonyms of Words using C#

A synonym is a word that exactly or nearly means the same as another word. We normally use synonyms to avoid using the same word repeatedly. As a developer, you may need to find out all words with the same meaning for your search purpose or document analysis. This article will guide you about how to find out all the synonyms of any specific word in C# using .NET API. Additionally, you can also get different groups of these synonyms that are arranged according to the different meanings of that same word.
September 14, 2021 · 3 min · Shoaib Khan

Build Full-Text Search Solution in Java

Full-text search is a way to search a text/query within a collection of documents. This approach quickly finds all instances of a term/phrase and it works by using text indexes. In this article, we will learn how to programmatically search full-text in documents using Java.
August 7, 2021 · 4 min · Shoaib Khan

Build your Full Text Search Solution in C#

Full-text search is basically a more advanced way to search a text/query over a collection of documents. This approach quickly finds all instances of a term and it works by using text indexes. In this article, we will learn, how to programmatically search full-text in documents using C#. The following topics are discussed in this article:

  • .NET API for Full-Text Search * Full-Text Search * Perform Search in C# * Highlight Search Results [Continue Reading …][1]
June 3, 2021 · 4 min · Shoaib Khan

Search Text in Word, Excel, PDF, ZIP and other Document Formats using C# .NET

We often need a full-text search API that enables our applications to search through documents for particular information specified as a textual search query. The documents can be of any format such as Word (Doc, Docx), PDF, HTML, EPUB, Spreadsheet (XLS, XLSX), Presentation (PPT, PPTX), images, and videos.
May 29, 2020 · 6 min · Muhammad Sohail

Text Indexing and Search your Directories using C#

Using the .NET API, you can perform searching by parts and specify the number of search threads in C#. This feature will be more beneficial when you search text in large indexes that contain thousands of documents. Furthermore, you can now get the start & end time, and the total search time to get the search results.
May 29, 2020 · 2 min · Shoaib Khan