[Release] GroupDocs.Parser for .NET v26.4 – Table extraction from HTML

Dear GroupDocs Customers,
We are pleased to announce the release of GroupDocs.Parser for .NET version 26.4. This update implements the functionality of extracting tables with and without a template for documents in HTML format.

Key New Feature

○ Implement table extraction from HTML (issue PARSERNET‑2858).

Major Improvements and Fixes

○ Implement table extraction from HTML.

The following example demonstrates how to extract tables from HTML files without a template:

// 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}");
    }
}

Reference Links

○ Release notes: GroupDocs.Parser for .NET 26.4 Release Notes
○ Release announcement blog post: GroupDocs.Parser for .NET 26.4 – Table Extraction from HTML (April 2026)
○ Updated GitHub examples: GitHub - groupdocs-parser/GroupDocs.Parser-for-.NET: GroupDocs.Parser for .NET examples, plugins and showcase projects · GitHub
○ OCR usage documentation: OCR Usage Basics | GroupDocs
○ NuGet package for .NET projects: NuGet Gallery | GroupDocs.Parser 26.4.0
○ NuGet package for .NET Framework projects: NuGet Gallery | GroupDocs.Parser.NETFramework 26.4.0

This update simplifies the use of image text recognition for Korean and Arabic languages.

We welcome your feedback. Please direct any questions or feature requests to our support team.
Sincerely,
The GroupDocs Team