Sort Score
Result 10 results
Languages All
Labels All
Results 121 - 130 of 1,036 for

query

(0.03 sec)
  1. 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/
  2. Search in Documents with Keyboard Layout Correc...

    Learn to search in documents with keyboard layout correction using Java. This guide provides code on how to correct keyboard layout for document search in Java....With this feature, even if a query is typed incorrectly due to...search method with your search query and the configured search options...

    kb.groupdocs.com/search/java/search-in-document...
  3. Storing text of indexed documents | Documentation

    This article explains that how to store text of indexed documents using Java.... // Searching const query = 'Einstein' ; const result...result = index . search ( query ); More resources GitHub examples You...

    docs.groupdocs.com/search/nodejs-java/storing-t...
  4. Search by chunks | Documentation

    This article gives the knowledge about the ability to perform search by chunks using Java search API...."c:\\MyDocuments\\" ; String query = "Einstein" ; // Creating an...SearchResult result = index . search ( query , options ); System . out ....

    docs.groupdocs.com/search/java/search-by-chunks/
  5. 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-...
  6. 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...
  7. Homophone dictionary | Documentation

    This article gives the knowledge of the API methods which can be used to perform operations about homophone dictionary using Java....// Search in the index const query = 'caul' ; const options = new...const result = index . search ( query , options ); More resources...

    docs.groupdocs.com/search/nodejs-java/homophone...
  8. Word forms provider | Documentation

    This article gives the knowledge of the API methods which can be used to perform operations about word forms provider interface using Java....const query = 'mrs' ; const result = index . search ( query , options...

    docs.groupdocs.com/search/nodejs-java/word-form...
  9. Logging | Documentation

    This article demonstrates that how creating and assigning a logger of an index, as well as on the implementation of a custom logger using search API....@"c:\MyDocuments\" ; string query = "Einstein" ; string logPath...SearchResult result = index . Search ( query ); // Search in index Implementing...

    docs.groupdocs.com/search/net/logging/
  10. Logging | Documentation

    This page contains information on creating and assigning a logger of an index, as well as on the implementation of a custom logger. Use of standard file logger In order to save information about events and errors in an index into a file, you should use the standard file logger or your own custom logger. It is important to remember that each time you open an existing index, you must create and assign an instance of the logger again, because the logger is not saved...."c:\\MyDocuments\\" ; String query = "Einstein" ; String logPath...SearchResult result = index . search ( query ); // Search in the index Implementing...

    docs.groupdocs.com/search/java/logging/