Sort Score
Result 10 results
Languages All
Labels All
Results 321 - 330 of 29,666 for

groupdocs.parser

(0.07 sec)
  1. Extract metadata from Microsoft Office Word doc...

    This article explains that how to extract metadata from Microsoft Office Word (.doc, .docx) documents...Search Product Solution GroupDocs.Parser Product Solution GroupDocs...Documentation / GroupDocs.Parser Product Family / GroupDocs.Parser for ...

    docs.groupdocs.com/parser/net/extract-metadata-...
  2. Extract metadata from Microsoft Office PowerPoi...

    To extract metadata from Microsoft Office PowerPoint presentations getMetadata method is used. This method allows to extract the following metadata: Name Description title The title of the presentation. subject The subject of the presentation. keywords The keyword of the presentation. comments The comments of the presentation. content-status The content status of the presentation. category The category of the presentation. company The company of the presentation. manager The manager of the presentation....Search Product Solution GroupDocs.Parser Product Solution GroupDocs...Documentation / GroupDocs.Parser Product Family / GroupDocs.Parser for Java...

    docs.groupdocs.com/parser/java/extract-metadata...
  3. Extract metadata from PDF documents | Documenta...

    This article explains that how to extract metadata from PDF documents...Search Product Solution GroupDocs.Parser Product Solution GroupDocs...Documentation / GroupDocs.Parser Product Family / GroupDocs.Parser for ...

    docs.groupdocs.com/parser/net/extract-metadata-...
  4. Extract tables from Microsoft Office Word docum...

    This article explains that how to extract tables from Microsoft Office Word (.doc, .docx) documents...Search Product Solution GroupDocs.Parser Product Solution GroupDocs...Documentation / GroupDocs.Parser Product Family / GroupDocs.Parser for ...

    docs.groupdocs.com/parser/net/extract-tables-fr...
  5. Extract hyperlinks from Microsoft Office Word d...

    To extract hyperlinks from Microsoft Office Word document getStructure method is used. This method returns XML representation of the document. Hyperlinks are represented by “hyperlink” tag; “link” attribute contains hyperlink’s URL. For more details, see Extract text structure. Hyperlink can contain a text: google.com Warning getStructure method returns null value if text structure extraction isn’t supported for the document. For example, text structure extraction isn’t supported for TXT files. Therefore, for TXT file getStructure method returns null....Search Product Solution GroupDocs.Parser Product Solution GroupDocs...Documentation / GroupDocs.Parser Product Family / GroupDocs.Parser for Java...

    docs.groupdocs.com/parser/java/extract-hyperlin...
  6. GroupDocs.Search for .NET

    Այս API-ն թույլ է տալիս կատարել տեքստի որոնում և ինդեքսավորել ցանկացած տեսակի ֆայլի ձևաչափ՝ օգտագործելով C# .NET լեզուն ցանկացած հարթակում:...Search Product Family GroupDocs.Parser Product Family GroupDocs...

    kb.groupdocs.com/hy/search/net/page/2/
  7. GroupDocs.Total for Node.js via Java

    Այս API-ն թույլ է տալիս Node.js կոդի տարբեր փաստաթղթերի վրա կատարել բոլոր տեսակի գործողություններ՝ ներառյալ ստեղծումը, խմբագրումը և փոխակերպումը և այլն:...Search Product Family GroupDocs.Parser Product Family GroupDocs...

    kb.groupdocs.com/hy/total/nodejs/
  8. Extract text from Microsoft Office PowerPoint p...

    This article explains that how to extract text from Microsoft Office PowerPoint(.ppt, .pptx) presentations...Search Product Solution GroupDocs.Parser Product Solution GroupDocs...Documentation / GroupDocs.Parser Product Family / GroupDocs.Parser for ...

    docs.groupdocs.com/parser/net/extract-text-from...
  9. OCR Usage Basics | Documentation

    This article explains how to use OCR....Search Product Solution GroupDocs.Parser Product Solution GroupDocs...Documentation / GroupDocs.Parser Product Family / GroupDocs.Parser for ...

    docs.groupdocs.com/parser/net/ocr-usage-basics/
  10. 使用 C# 从数据库文件中提取数据

    数据库 被认为是大多数应用程序的组成部分。无论是桌面、Web 还是移动应用程序,数据库在存储、访问和操作数据方面都发挥着至关重要的作用。有许多数据库管理系统允许为您创建和管理数据库。 然而,当您需要一种从数据库文件(即 .db 文件) 中提取数据的方法时,可能会出现这样的情况,而无需安装数据库管理系统或编写 SQL 查询。在这种情况下,您将如何解析数据库文件并从中获取数据? 在本文中,我将演示如何轻松地从 SQLite 数据库中的表中提取数据,而无需编写 SQL 查询。我将使用 Groupdocs.parser for .NET API,它支持通过 [ADO.NET](https://en.wikipedia. org/wiki/ADO.NET) 。 从 SQLite 数据库 (.db) 中的表中提取数据的步骤 1. 在 Visual Studio 中创建一个新项目。 2. 从 NuGet 安装 Groupdocs.parser for .NET。 3. 添加以下命名空间。 using System; using System.Collections.Generic; using System.IO; using Groupdocs.parser.Data; using Groupdocs.parser.Options; 4. 准备连接字符串。 string connectionString = string.Format("Provider=System.Data.Sqlite;Data Source={0};Version=3;", "sqlite.db"); 5. 在 Parser 对象中加载数据库文件。 using (Parser parser = new Parser(connectionString, new LoadOptions(FileFormat.Database))) { // 你的代码在这里 } 6....我将使用 GroupDocs.Parser for .NET API,它支持通过 [ADO...中创建一个新项目。 2. 从 NuGet 安装 GroupDocs.Parser for .NET 。 3. 添加以下命名空间。...

    blog.groupdocs.com/zh/parser/extract-data-from-...