我一直在尝试替换数组中的值,目前我正在尝试清理一些值。我正在尝试通过使用数组来删除表格标签,或者也许有更好的方法来执行正则表达式?任何帮助,将不胜感激!谢谢。
$array = [regex]::matches($lines, "<td>(.*?)</td>")
for($x = 0; $x -le $max; $x++){
$array[$x] = $array[$x].value -replace "<td>", ""
}
不幸的是,我不断收到以下错误:
[ : Unable to index into an object of type System.Text.RegularExpressions.MatchCollection.