pandasライブラリを使用する方法:import pandas as pd
# HTMLを読み込んでテーブルを取得する
html = """
<table>
<tr>
<th>列1</th>
<th>列2</th>
</tr>
<tr>
<td>データ1</td>
<td>データ2</td>
</tr>
</table>
"""
tables = pd.read_html(html)
# データフレームに変換する
df = t>>More
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