作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 PowerShell 读取并循环遍历 CSV 文件,以便为 CSV 文件的每一行创建一个新文件。我需要使用标题名称作为每个新文件的一部分。
对于 CSV 的每一行,如何循环遍历每一列并在每个新文件的输出中输出每个变量的键和值?
例如,如果 Master.csv 包含
a,b,c
1,2,3
4,5,6
a=1
b=2
c=3
a=4
b=5
c=6
Import-Csv "C:\Master.csv" | %{
$CsvObject = $_
Write-Output "Working with $($CsvObject.a)"
$CsvObject | ForEach-Object {
Write-Output "Key = Value`n"
}
}
最佳答案
这似乎可以完成这项工作。 [咧嘴] 它使用隐藏的.PSObject
属性来遍历每个对象的属性。
# fake reading in a CSV file
# in real life, use Import-CSV
$Instuff = @'
a,b,c
1,2,3
4,5,6
'@ | ConvertFrom-Csv
$Counter = 1
foreach ($IS_Item in $Instuff)
{
$FileName = "$env:TEMP\HamletHub_File$Counter.txt"
$TextLines = foreach ($Prop in $IS_Item.PSObject.Properties.Name)
{
'{0} = {1}' -f $Prop, $IS_Item.$Prop
}
Set-Content -LiteralPath $FileName -Value $TextLines
$Counter ++
}
a = 1
b = 2
c = 3
关于powershell - 如何在 powershell 循环中使用数组键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55290499/
我是一名优秀的程序员,十分优秀!