如何使用Powershell从.Csv文件中获取一行信息?

时间:2018-06-14 08:22:44

标签: powershell csv

powershell脚本:

$test = import-csv “C:\CSVFiles\test.csv”
ForEach ($item in $test)
{
$Name = $item.(“Name”) 
$property = $item.("property")
$location = $item.(“location”)

Write-Output "$Name=$Name"
Write-Output "Property=$property"
Write-Output "Location=$location"
}

此脚本显示每行的名称,属性和位置的所有数据。我希望结果只显示一行的数据;例如行:n1; 13;计算机

Cvs file =

Name;property;location
n1;13;computer
n2;65;computer
n3;12;tablet
n4;234;phone
n5;123;phone
n6;125;phone

当前脚本吐出的内容:

Name=n1
Property=13
Location=computer
Name=n2
Property=65
Location=computer
Name= n3
Property=12
Location=tablet
Name=n4
Property=234
Location=phone
Name=n5
Property=123
Location=phone
Name=n6
Property=125
Location=phone

2 个答案:

答案 0 :(得分:6)

有很多方法可以选择csv的行并显示数据

为了演示,我使用带有此字符串的内联csv。

$Test = @"
Name;property;location
n1;13;computer
n2;65;computer
n3;12;tablet
n4;234;phone
n5;123;phone
n6;125;phone
"@ | ConvertFrom-Csv -delimiter ';'
> $test[0]

Name property location
---- -------- --------
n1   13       computer
> $test | where-object Name -eq 'n1'

Name property location
---- -------- --------
n1   13       computer
> $test | where-object Name -eq 'n1' | Select-Object Name,property

Name property
---- --------
n1   13
> $test | where-object Name -eq 'n1' | ForEach-Object {"Name:{0} has property: {1}" -f $_.Name,$_.property}
Name:n1 has property: 13

导入后,csv行内容将转换为对象

如果要获取符合条件的csv的原始行,请不要导入,但是:

> Get-Content "C:\CSVFiles\test.csv" | Select-String '^n1'

n1;13;computer

^n1是一个正则表达式,用于将模式锚定在第一行。

Select-String -Path "C:\CSVFiles\test.csv" -Pattern '^n1'

没有管道是相同的

答案 1 :(得分:0)

因此,您当前的输出有3个对象,主要有3个标题。 一个是名称;第二个是 Property ,第三个是 Location

作为解决方案的一部分,您可以通过指定索引值来提取记录,也可以使用.Headername来提取同一对象的所有集合。喜欢:

避免使用$test[0]$test[1]

进行Foreach访问

或者您可以直接使用:$test.Name来获取csv中的所有名称