我正在编写的代码示例有问题。这是一个简单的问题,但这是一个需要一些时间的问题,而我没有。我已经尝试过 stackoverflow 相关问题和搜索,但没有找到任何有帮助的东西。
我有以下代码:
#Importing some file from a csv to a variable
$output = import-csv -LiteralPath ...some file imports OK
##
#Copy the layout of the csv imported for further processing..
##
$extraOut = $output.clone()
$extraOut | ForEach-Object {
$_.innerlinks1 = ""
$_.innerlinksurl1 = ""
}
当我尝试打印出 $output 的值时,通过使用 $_ 我得到了我之前分配的空字符串(我不想要)。为什么会这样?
#Trying to print out $output should have data and not empty strings.
$output | ForEach-Object { Write-Host $_ }
任何允许复制 Import-csv 结果结构的帮助或代码(带有或不带有 PSObject 克隆)也会很棒。
注意:在找到有用的答案后,我还认为问题需要更详细的脚本,因为我的文件中有很多空字符串,将来可能会导致其他问题。