0

次のスクリプトを使用してコンマ数を取得しています。

Get-Content .\myFile | 
% { ($_ | Select-String `, -all).matches | measure | select count } | 
group -Property count

それは戻ります、

カウント名グループ
----- ---- -----
  131 85 {@{Count=85}, @{Count=85}, @{Count=85}, @{Count=85}...}
    3 86 {@{Count=86}, @{Count=86}, @{Count=86}}

Groupの代わりに列に行番号を表示できます@{Count=86}, ...か?

ファイルには多くの行があり、行の大部分には同じコンマがあります。出力行が小さくなるようにグループ化したい

4

1 に答える 1

3

このようなものを使用できますか?

$s = @"
this,is,a
test,,
with,
multiple, commas, to, count,
"@

#convert to string-array(like you normally have with multiline strings)
$s = $s -split "`n"

$s | Select-String `, -AllMatches | Select-Object LineNumber, @{n="Count"; e={$_.Matches.Count}} | Group-Object Count

Count Name                      Group                                                                                                        
----- ----                      -----                                                                                                        
    2 2                         {@{LineNumber=1; Count=2}, @{LineNumber=2; Count=2}}                                                         
    1 1                         {@{LineNumber=3; Count=1}}                                                                                   
    1 4                         {@{LineNumber=4; Count=4}} 

グループ内で "count" プロパティを複数回使用したくない場合は、カスタム オブジェクトが必要です。このような:

$s | Select-String `, -AllMatches | Select-Object LineNumber, @{n="Count"; e={$_.Matches.Count}} | Group-Object Count | % {
    New-Object psobject -Property @{
        "Count" = $_.Name
        "LineNumbers" = ($_.Group | Select-Object -ExpandProperty LineNumber) 
    }
}

出力:

Count    LineNumbers 
-----    ----------- 
2         {1, 2}   
1         3   
4         4 
于 2013-02-14T18:28:23.500 に答える