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

Key Category Summary
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.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