Search for different word forms

The search for different word forms allows you to search for nouns in the singular or plural, adjectives in the degree of comparison, forms of regular and irregular verbs, etc.

Search for different word forms is enabled if the UseWordFormsSearch property of the SearchOptions class is set to true. By default, the search for different word forms is disabled.

To generate various forms of words, a class that implements the IWordFormsProvider interface is used. The default class is EnglishWordFormsProvider, which supports English-only word forms. To add support for word forms in other languages, see the Word forms provider page.

The following example demonstrates how to perform search for different word forms in an index.

C#

string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";
 
// Creating an index in the specified folder
Index index = new Index(indexFolder);
 
// Indexing documents from the specified folder
index.Add(documentsFolder);
 
// Creating a search options instance
SearchOptions options = new SearchOptions();
options.UseWordFormsSearch = true; // Enabling search for word forms
 
// Searching in the index
SearchResult result = index.Search("relative", options);
 
// The following words can be found:
// relative
// relatives
// relatively

More resources

GitHub examples

You may easily run the code from documentation articles and see the features in action in our GitHub examples:

Free online document search App

Along with full featured .NET library we provide simple, but powerful free Apps.

You are welcome to search over your PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX and more with our free online Free Online Document Search App.