如何在Powershell循环中使用数组键?

时间:2019-03-21 23:02:57

标签: powershell hashtable

我正在使用PowerShell读取和遍历CSV文件,以便为CSV文件的每一行创建一个新文件。我需要将标题名称用作每个新文件的一部分。

对于CSV的每一行,我如何遍历每一列并在每个新文件的输出中输出每个变量的键和值?

例如,如果Master.csv包含

a,b,c
1,2,3
4,5,6

我想输出一个名为file1.txt的文件:

a=1
b=2
c=3

和一个名为file2.txt的文件:

a=4
b=5
c=6

将数组转换为哈希表并使用$ d.Keys之类的东西有好处吗?

我正在尝试以下操作,但无法获取密钥:

Import-Csv "C:\Master.csv" | %{
    $CsvObject = $_
    Write-Output "Working with $($CsvObject.a)"
    $CsvObject | ForEach-Object { 
        Write-Output "Key = Value`n" 
    }
}

1 个答案:

答案 0 :(得分:4)

这似乎可以完成工作。 [ grin ]它使用隐藏的.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 ++
    }

HamletHub_File1.txt内容...

a = 1
b = 2
c = 3