Sort Score
Result 10 results
Languages All
Labels All
Results 2,031 - 2,040 of 3,277 for

indexing

(0.19 sec)
  1. Deleting documents | GroupDocs

    This page contains information about deleting documents in the search network....= fileName ; } Indexer indexer = node . Indexer ; DeleteOptions...options = new DeleteOptions (); indexer . Delete ( fileNames , options...

    docs.groupdocs.com/search/net/deleting-documents/
  2. Выполнение поиска по фрагментам с использование...

    Узнайте, как искать по фрагментам с помощью C# для эффективного извлечения данных. Изучите фрагментированный поиск C# в больших индексах для обработки десятков или сотен тысяч документов....фрагментам Инициализируйте объект Index , указав путь к папке, в которой...храниться индекс. Используйте метод Index.Add для индексации документов...

    kb.groupdocs.com/ru/search/net/perform-search-b...
  3. Extract TOC from EPUB Documents using GroupDocs...

    It gives us immense pleasure to announce the release of version 18.4 of GroupDocs.Text for .NET. The latest version allows extracting the table of contents from the EPUB documents. Furthermore, we have added the feature of detecting media type of .one file. Following sections provide details about the newly added features. Extracting TOC from EPUB Documents Using version 18.4, you can now extract TOC from the EPUB documents. To access the TOC, TableOfContents property of **EpubPackage **class is used....title) PageIndex - the page index of the text (null if it is just...hasn’t sub-items) this[int index] - gets a sub-item ExtractPage...

    blog.groupdocs.com/parser/extract-toc-from-epub...
  4. GroupDocs.Parser voor .NET 25.12 – Laatste upda...

    Ontdek wat er nieuw is in GroupDocs.Parser voor .NET 25.12. Nu beschikbaar op NuGet en de GroupDocs‑website....pageIndex correspondeert met de index van het werkblad. Beide verbeteringen...pageIndex = 0 ; // Werkblad‑index // Retourneert ListObject‑tabellen...

    blog.groupdocs.com/nl/parser/groupdocs-parser-f...
  5. 2 changes between 25.11.0 and 26.6.0 - Free Sup...

    Hello, I identified at least 2 unexpected differences between the current and previous GroupDocs versions via our unit tests… repro.zip (3.3 MB) This is a repro project. When you execute it with the current and previo…...attached docx file is not indexable anymore. According to the...attached CHM file is still indexable, but the search (see the repro...

    forum.groupdocs.com/t/2-changes-between-25-11-0...
  6. Java 模糊搜索 - 在跨文件夹的文件中查找

    了解 Java 的模糊搜索如何帮助您跨文件夹查找文件中的内容!这就像一个可以理解小错误的智能搜索。...创建索引文件夹并将文档的文件夹添加到其中 Index index = new Index("path/indexing-folder-path");...h"); index.add("path/parent-folder"); SearchOptions options =...

    blog.groupdocs.com/zh/search/fuzzy-search-java/
  7. C# 模糊搜尋 - 在跨資料夾的檔案中尋找

    釋放 C# 中程式化模糊搜尋的威力!跨文件夾搜尋多個基於文字的文檔,以取得具有容錯能力的近似匹配。...建立索引資料夾並將文件的資料夾新增至其中 Index index = new Index("indexing-folder-path"); index.Ad...query SearchResult result = index.Search(query, options); 這裡,相似度設定為...

    blog.groupdocs.com/zh-hant/search/fuzzy-search-...
  8. Tìm Word và các từ đồng âm của nó trong nhiều t...

    Tìm từ cụ thể và từ đồng âm của nó trong các tệp khác nhau của một thư mục bằng C#. Xây dựng ứng dụng .NET cho từ đồng âm sử dụng API tìm kiếm tài liệu của GroupDocs...chỉ định Index index = new Index(indexFolder); index.Add(documentsFolder);...kiếm SearchResult result = index.Search(query, options); Console...

    blog.groupdocs.com/vi/search/find-homophones-in...
  9. 在 ASP.NET Core MVC 中為 140 多種文件格式創建文檔查看器

    在線文檔查看器在數字文檔的使用越來越多之後變得流行起來,尤其是在內容管理系統中。這種流行背後的原因是您無需購買或安裝專用軟件程序即可查看各種文檔格式。考慮到文檔查看器的重要性,我想寫一篇關於如何在 ASP.NET MVC 中創建通用文檔查看器的文章。 我們將創建一個面向 [.NET Core](https://en.wikipedia. org/wiki/.NETCore) 框架。對於後端的文檔呈現,我們將使用 GroupDocs.Viewer for .NET API - 一個強大的文檔查看器 API,支持 140 多種文檔類型,包括 PDF 、Word、Excel、PowerPoint, Visio、CAD、Outlook 和許多其他流行格式。 為什麼選擇 .NET 核心? .NET Core 是 Microsoft 對 .NET 生態系統的重要補充。它使得開發跨平台應用程序成為可能,而無需開發人員進行任何額外的工作。這就是我選擇 .NET Core 作為目標框架的原因。 在 ASP.NET Core 中創建文檔查看器的步驟 打開 Visual Studio 並開始一個新項目。 從項目類型中選擇 .NET Core,從模板中選擇 ASP.NET Core Web Application。 選擇 Web Application (Model-View-Controller) 並單擊 Ok 按鈕。 從 NuGet 安裝 GroupDocs.Viewer。 打開 Views/Home/Index.cshtml 文件並將其內容替換為以下內容: @{ ViewData["Title"] = "Home Page"; }