Regular expression (RegEx) search queries are universal and very flexible, but at the same time, in large indexes, their performance becomes extremely low. Another limitation of regular expressions is that search with a pattern is done for each word separately, and not the entire text of a document field.
Queries of this type always starts with the caret character, and if the regular expression itself also starts with the caret character, then there will be two caret characters at the beginning of the query.
The following example demonstrates the regex search in text and object forms.
C#
stringindexFolder=@"c:\MyIndex\";stringdocumentsFolder=@"c:\MyDocuments\";// Creating an index in the specified folderIndexindex=newIndex(indexFolder);// Indexing documents from the specified folderindex.Add(documentsFolder);// Search for the phrase in text formstringquery1="^^(.)\\1{1,}";// The first caret character at the beginning indicates that this is a regular expression search querySearchResultresult1=index.Search(query1);// Search for two or more identical characters at the beginning of a word// Search for the phrase in object formSearchQueryquery2=SearchQuery.CreateRegexQuery("^(.)\\1{1,}");// Search for two or more identical characters at the beginning of a wordSearchResultresult2=index.Search(query2);
More resources
GitHub examples
You may easily run the code from documentation articles and see the features in action in our GitHub examples: