Homophone search, or in other words phonic search, allows you to find not only the words specified in the search query, but also the homophones, words that are pronounced the same but differ in meaning.
To enable homophone search, you have to call the setUseHomophoneSearch method of the SearchOptions class with the true value as an argument. By default, homophone search is disabled.
The default homophone dictionary contains homophones only for the English language. To manage the homophone dictionary, see the Homophone dictionary page in the Managing dictionaries section.
The following example demonstrates the homophone search.
StringindexFolder="c:\\MyIndex\\";StringdocumentsFolder="c:\\MyDocuments\\";// Creating an index in the specified folder
Indexindex=newIndex(indexFolder);// Indexing documents from the specified folder
index.add(documentsFolder);// Creating a search options object
SearchOptionsoptions=newSearchOptions();options.setUseHomophoneSearch(true);// Enabling homophone search
// Search for the word 'coal'
// In addition to the word 'coal', the words 'cole' and 'kohl' will also be found
SearchResultresult=index.search("coal",options);
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: