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

Key Category Summary
PARSERNET-2858 Improvement Implement table extraction from HTML

Public API changes

None.

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 – Upgrade to the latest GroupDocs.Parser package via NuGet:

    NuGet\Install-Package GroupDocs.Parser -Version 26.4.0
    
    NuGet\Install-Package GroupDocs.Parser.NETFramework -Version 26.4.0
    
  • Direct Download – Download the assemblies for .NET from the GroupDocs.Parser for .NET 26.4 page on the GroupDocs releases site:

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