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 – ดาวน์โหลด assemblies สำหรับ .NET จากหน้า GroupDocs.Parser for .NET 26.4 บนไซต์ releases ของ 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