S potěšením oznamujeme vydání GroupDocs.Parser for .NET 26.4, dostupné od duben 2026. Tato aktualizace zavádí extrakci tabulek z HTML souborů.

Co je nového v tomto vydání

Klíč Kategorie Shrnutí
PARSERNET-2858 Vylepšení Implementace extrakce tabulek z HTML

Změny veřejného API

Žádné.

Příklad kódu

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

Jak získat aktualizaci

  • NuGet – Aktualizujte na nejnovější balíček GroupDocs.Parser prostřednictvím NuGet:

    NuGet\Install-Package GroupDocs.Parser -Version 26.4.0
    
    NuGet\Install-Package GroupDocs.Parser.NETFramework -Version 26.4.0
    
  • Přímé stažení – Stáhněte sestavení pro .NET ze stránky GroupDocs.Parser for .NET 26.4 na webu GroupDocs releases:

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/

Zdroje