We are pleased to announce the release of GroupDocs.Parser for .NET 26.4, available as of April 2026. This update introduces table extraction from HTML files.

What’s new in this release

Ключ Категорія Опис
PARSERNET-2858 Удосконалення Реалізовано витягування таблиць з HTML

Public API changes

Немає.

Code example

// Create an instance of the Parser class
using (Parser parser = new Parser(documentPath))
{
    // Extract all tables from the document
    IEnumerable<PageTableArea> tables = parser.GetTables();
    foreach (PageTableArea table in tables)
    {
        Console.WriteLine($"\tRows: {table.RowCount} Columns: {table.ColumnCount}");
    }
}

How to get the update

  • NuGet – Оновіть до останньої пакети GroupDocs.Parser через NuGet:

    NuGet\Install-Package GroupDocs.Parser -Version 26.4.0
    
    NuGet\Install-Package GroupDocs.Parser.NETFramework -Version 26.4.0
    
  • Direct Download – Завантажте збірки для .NET зі сторінки GroupDocs.Parser for .NET 26.4 на сайті випусків GroupDocs:

https://releases.groupdocs.com/parser/net/new-releases/groupdocs.parser-for-.net-26.4-dlls-only/ https://releases.groupdocs.com/parser/net/new-releases/groupdocs.parser-for-.net--26.4/

Resources