Chúng tôi rất vui mừng thông báo việc phát hành GroupDocs.Parser for .NET 26.4, có sẵn từ tháng 4 2026. Bản cập nhật này giới thiệu việc trích xuất bảng từ các tệp HTML.

Những gì mới trong bản phát hành này

Key Thể loại Tóm tắt
PARSERNET-2858 Cải tiến Triển khai trích xuất bảng từ HTML

Thay đổi API công cộng

Không có.

Ví dụ mã

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

Cách nhận bản cập nhật

  • NuGet – Nâng cấp lên gói GroupDocs.Parser mới nhất qua NuGet:

    NuGet\Install-Package GroupDocs.Parser -Version 26.4.0
    
    NuGet\Install-Package GroupDocs.Parser.NETFramework -Version 26.4.0
    
  • Direct Download – Tải xuống các assembly cho .NET từ trang GroupDocs.Parser for .NET 26.4 trên trang phát hành của 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/

Tài nguyên