Sort Score
Result 10 results
Languages All
Labels All
Results 111 - 120 of 979 for

query

(0.03 sec)
  1. Alphabet | Documentation

    This article gives the knowledge of the API methods which can be used to perform operations about Alphabets using Java....// Search in the index const query = 'Elliot-Murray-Kynynmound'...const result = index . search ( query ); More resources GitHub examples...

    docs.groupdocs.com/search/nodejs-java/alphabet/
  2. Java 文件搜索 - 跨文件夹搜索文件中的多个文本

    使用 Java 搜索分布在不同文件夹中的各种文件中的多个文本或短语。在相应的 HTML 文件中突出显示扫描结果。...add("path/parent-folder/"); String query = "water OR \"Lorem ipsum\"...SearchResult result = index.search(query); for (int i = 0 ; i < result...

    blog.groupdocs.com/zh/search/search-multiple-te...
  3. 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/
  4. Custom text segmenter | Documentation

    GroupDocs.Search provides the ability to set up custom text segmenting....Searching in the index string query = "考虑" ; // Consider SearchResult...SearchResult result = index . Search ( query ); More resources GitHub examples...

    docs.groupdocs.com/search/net/custom-text-segme...
  5. 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...reports ) { console . log ( 'Query: ' + report . getTextQuery ());...

    docs.groupdocs.com/search/nodejs-java/search-re...
  6. Character replacement during indexing | Documen...

    Character replacement during indexing can be used, for example, to convert all text to lowercase characters or to remove diacritics from text....case-insensitive search is performed const query = 'Einstein' ; const options...const result = index . search ( query , options ); More resources...

    docs.groupdocs.com/search/nodejs-java/character...
  7. 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...
  8. .NET 文件搜索 - 跨文件夹搜索文件中的多个文本

    使用 C# 搜索分布在不同文件夹中的各种文件中的多个文本或短语。在相应的 HTML 文件中突出显示扫描结果。...搜索包含单词“water”或“non”或短语“Lorem ipsum”的文档 string query = "water OR \"Lorem ipsum\"...SearchResult result = index.Search(query); // 打印结果 Console.WriteLine("Documents:...

    blog.groupdocs.com/zh/search/search-multiple-te...
  9. Basic Usage | Documentation

    Open Navigation Close Navigation Products GroupDocs.Total Product Family GroupDocs.Viewer Product Solution GroupDocs.......search solution Build search query Work with search results Index...

    docs.groupdocs.com/search/java/basic-usage/
  10. 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-...