Sort Score
Result 10 results
Languages All
Labels All
Results 111 - 120 of 1,035 for

query

(0.34 sec)
  1. Keyboard layout correction | Documentation

    This article gives the knowledge that the keyboard layout correction feature can be used when entering search queries, users of your software may make input errors, forgetting to switch the desired keyboard layout using Java search API....feedback When entering search queries, users of your software may...containing word 'sportsman' const query = 'ызщкеыьфт' ; const result...

    docs.groupdocs.com/search/nodejs-java/keyboard-...
  2. Perform Wildcard Search using Java

    Learn how to perform wildcard search using Java. Discover how to use wildcard search in Java and group wildcards for more efficient and flexible search queries....technique for handling search queries where exact matches are uncertain...wildcard usage helps optimize query performance and improve the...

    kb.groupdocs.com/search/java/perform-wildcard-s...
  3. Perform Search by Chunks using C#

    Learn how to search by chunks using C# for efficient data retrieval. Explore C# chunked search in large indexes to handle tens or hundreds of thousands of documents....Search method with the query string and the configured search...and execute a chunked search query. The results are retrieved segment...

    kb.groupdocs.com/search/net/perform-search-by-c...
  4. OCR support | Documentation

    OCR support means the ability to connect an external module (library) for the recognition of printed text (optical character recognition, OCR) on images, either separate or embedded in documents. To connect OCR, you need to implement the IOcrConnector interface in the client code. The following example demonstrates how to implement the OCR connector using com.aspose.ocr library for text recognition in images. const indexFolder = 'c:/MyIndex/'; const documentsFolder = 'c:/MyDocuments/'; const Query = 'Einstein'; // Creating an index const index = new groupdocs....= 'c:/MyDocuments/' ; const query = 'Einstein' ; // Creating an...const result = index . search ( query ); More resources GitHub examples...

    docs.groupdocs.com/search/nodejs-java/ocr-support/
  5. Search for different word forms | Documentation

    This article shows that how to allow you to search for nouns in the singular or plural, adjectives in the degree of comparison, forms of regular and irregular verbs, etc....Searching in the index const query = 'wished' ; const result =...= index . search ( query , options ); // The following words can...

    docs.groupdocs.com/search/nodejs-java/search-fo...
  6. Spelling corrector | Documentation

    This article gives the knowledge of the API methods which can be used to perform operations about spelling corrector using Java....spelling errors in search queries, as well as to store words...spelling correction in search queries on the page. To get the number...

    docs.groupdocs.com/search/nodejs-java/spelling-...
  7. Search by chunks | Documentation

    This article gives the knowledge about the ability to perform search by chunks using Java search API....'c:/MyDocuments3/' ; const query = 'invitation' ; // Creating...let result = index . search ( query , options ); console . log (...

    docs.groupdocs.com/search/nodejs-java/search-by...
  8. Stop word dictionary | Documentation

    This article gives the knowledge of the API methods which can be used to perform operations about stop word dictionary using Java....const query = 'but' ; const result = index . search ( query ); More...

    docs.groupdocs.com/search/nodejs-java/stop-word...
  9. Perform Homophone Search using Java

    Learn how to perform homophone search using Java for phonetic matching. Explore the Java homophone search algorithm for accurate results without extra software....method, passing your search query and the configured search options...search method is used to run the query, delivering a detailed list...

    kb.groupdocs.com/search/java/perform-homophone-...
  10. Search by chunks | Documentation

    This article gives the knowledge about the ability to perform search by chunks....@"c:\MyDocuments\" ; string query = "Einstein" ; // Creating an...SearchResult result = index . Search ( query , options ); Console . WriteLine...

    docs.groupdocs.com/search/net/search-by-chunks/