我們很高興宣布 GroupDocs.Parser for .NET 26.4 已於 2026 年 4 月 發佈。此更新加入了從 HTML 檔案中提取表格的功能。
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 – 透過 NuGet 升級至最新的 GroupDocs.Parser 套件:
NuGet\Install-Package GroupDocs.Parser -Version 26.4.0NuGet\Install-Package GroupDocs.Parser.NETFramework -Version 26.4.0 -
Direct Download – 從 GroupDocs 釋出網站的 GroupDocs.Parser for .NET 26.4 頁面下載 .NET 組件:
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/