Home > CSV変換


PowerShellを使用してHTMLテーブルをCSVに変換する方法

Invoke-WebRequestを使用する方法:$url = "https://example.com/table.html" $outputFile = "output.csv" $response = Invoke-WebRequest -Uri $url $table = $response.ParsedHtml.getElementsByTagName("table")[0] $rows = $table.rows $csvContent = foreach ($row in $rows) { $rowData = foreach ($cell in $row.cells) { >>More