Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
This release of GroupDocs.Search for .NET 24.3 (MSI) delivers exciting advancements in text search capabilities for your .NET applications, in the form of CJK (Chinese, Japanese, and Korean) characters and Unicode surrogate pairs support.
The C# text search API now boasts extensive support for Unicode surrogate pairs. Which means you can finally say goodbye to inaccurate indexing! These character combinations will now be indexed as single units to ensure highly precise search results within your .NET search and indexing applications on Windows.
GroupDocs.Search for .NET now automatically recognizes and indexes Chinese, Japanese, and Korean characters by default. This feature eliminates the need for manual configuration and fine-tunes the indexing process for these widely used languages. This code sample demonstrates how to use this functionality within your C# apps.
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); // Search for a surrogate pair using Unicode code point string query1 = char.ConvertFromUtf32(0x20E97); SearchResult result1 = index.Search(query1); // Search for a sequence of hieroglyphs // Note that the line is enclosed in double quotes and there are spaces between the hieroglyphs string query2 = "\"入 里 面\""; SearchResult result2 = index.Search(query2);
Source*
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Search for .NET 24.3 Release Notes.