Sort Score
Result 10 results
Languages All
Labels All
Results 131 - 140 of 1,035 for

query

(0.06 sec)
  1. 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...
  2. 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...
  3. Numeric Range Search in C#

    Effortlessly perform numeric range search in C# with GroupDocs.Search. Learn how to search numeric ranges in documents C# using advanced and efficient techniques....to include Execute a search query with numeric ranges by calling...searches using a simple text query like "500 ~~ 600" or a more...

    kb.groupdocs.com/search/net/numeric-range-searc...
  4. Search reports | Documentation

    This article shows that how to perform the operations on generated search reports....occurrences found; The search query; The search options. The following...{ System . out . println ( "Query: " + report . getTextQuery ());...

    docs.groupdocs.com/search/java/search-reports/
  5. Perform Boolean Search using C#

    Perform Boolean search using C# to enhance document retrieval. Learn full-text search with Boolean operators in C# for precise and efficient results in applications....and customize your search queries using logical operators like...NOT to perform your search query Access the search results using...

    kb.groupdocs.com/search/net/perform-boolean-sea...
  6. Search Special Characters in Documents using C#

    Easily search special characters in documents using C#. Enhance accuracy and relevance in text search with special characters in C# across multiple platforms....method by providing a search query Review the search results by...You can formulate a search query that includes special characters...

    kb.groupdocs.com/search/net/search-special-char...
  7. Indexing with stop words | Documentation

    Stop words are frequently used words that do not carry a semantic meaning and can be removed from an index to reduce its size. You can enable or disable the use of stop words by calling the setUseStopWords method of the IndexSettings class. The default value is true, meaning that stop words are filtered during indexing and not added to the index. A list of stop words to use during indexing can be specified in the stop word dictionary....const query = 'on' ; const result = index . search ( query ); More...

    docs.groupdocs.com/search/nodejs-java/indexing-...
  8. How to Run Examples | Documentation

    This article describes how to run .NET search API code examples....path for your documents string query = "Einstein" ; Index index =...SearchResult result = index . Search ( query ); // Searching in index foreach...

    docs.groupdocs.com/search/net/how-to-run-examples/
  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/