We are pleased to announce the release of GroupDocs.Parser for .NET 26.4, available as of 2026年4月. This update introduces table extraction from HTML files.
What’s new in this release
| キー | カテゴリ | 概要 |
|---|---|---|
| PARSERNET-2858 | 改善 | HTMLからのテーブル抽出を実装 |
公開 API の変更
なし。
コード例
// 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}");
}
}
アップデートの取得方法
-
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/