從陣列後面push進資料
"1,2,3,4,5,6"一行
$thisRow += $row然後把多個資料合併成一個string
$tables += $thisRow -join ","這樣就會把thisRow變成
"1,2,3,4,5,6"一行
接著是正則替換
$row = $row -replace "<\S+>",""再來輸出成csv
$tables| out-file a.csv -Encoding ascii
留言
張貼留言