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.
GroupDocs.Search for .NET 24.3 (DLLs only) is here, and it brings some exciting new feature enhancements for .NET developers. With this DLLs package, developers can enjoy flexibility in integration and add the CJK (Chinese, Japanese, and Korean) characters and Unicode surrogate pairs to their search and indexing applications.
The latest C# text search API version includes extensive Unicode surrogate pairs support. It allows users to say goodbye to inaccurate indexing on Windows, Linux, and macOS systems! It is now possible to index these character combinations as single units and ascertain precise search results.
GroupDocs.Search for .NET now recognizes and indexes Chinese, Japanese, and Korean characters automatically by default. Eliminate the requirement for manual configuration with this update and enhance the indexing process for these 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.