计算文件中的行并存储在Variable中

时间:2012-11-18 13:08:41

标签: loops powershell for-loop

我需要计算文本文件中的行数,并将其用作我的for循环的循环变量。问题是:

$lines = Get-Content -Path PostBackupCheck-Textfile.txt  | Measure-Object -Line

虽然这确实返回了行数,但它返回的状态无法与循环中的整数进行比较:

for ($i=0; $i -le $lines; $i++)
    {Write-Host "Line"}

3 个答案:

答案 0 :(得分:14)

Measure-Object返回TextMeasureInfo个对象,而不是整数:

PS C:\> $lines = Get-Content .\foo.txt | Measure-Object -Line
PS C:\> $lines.GetType()

IsPublic IsSerial Name                 BaseType
-------- -------- ----                 --------
True     False    TextMeasureInfo      Microsoft.PowerShell.Commands.MeasureInfo

您要使用的信息由该对象的Lines属性提供:

PS C:\> $lines | Get-Member


   TypeName: Microsoft.PowerShell.Commands.TextMeasureInfo

Name        MemberType Definition
----        ---------- ----------
Equals      Method     bool Equals(System.Object obj)
GetHashCode Method     int GetHashCode()
GetType     Method     type GetType()
ToString    Method     string ToString()
Characters  Property   System.Nullable`1[[System.Int32, mscorlib, Vers...
Lines       Property   System.Nullable`1[[System.Int32, mscorlib, Vers...
Property    Property   System.String Property {get;set;}
Words       Property   System.Nullable`1[[System.Int32, mscorlib, Vers...

该属性返回实际的整数:

PS C:\> $lines.Lines.GetType()

IsPublic IsSerial Name                 BaseType
-------- -------- ----                 --------
True     True     Int32                System.ValueType


PS C:\> $lines.Lines
5

所以你可以在循环中使用它:

PS C:\> for ($i = 0; $i -le $lines.Lines; $i++) { echo $i }
0
1
2
3
4
5
PS C:\> _

答案 1 :(得分:5)

对于它的价值,我发现上面的例子返回了错误的行数。我发现这返回了正确的计数:

$measure = Get-Content c:\yourfile.xyz | Measure-Object 
$lines = $measure.Count
echo "line count is: ${lines}"

你可能想测试这两种方法,找出能给你答案的方法。使用" Line"返回20和" Count"返回24.该文件包含24行。

答案 2 :(得分:0)

$lines = Get-Content -Path PostBackupCheck-Textfile.txt |测量-对象-线| select -expand 行