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.

このたび、GroupDocs.Parser for .NET 26.42026年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 – 最新の GroupDocs.Parser パッケージを NuGet 経由でアップグレードします:

    NuGet\Install-Package GroupDocs.Parser -Version 26.4.0
    
    NuGet\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/

Resources