keshun 当前离线
六级士官
yhcfsr 当前离线
中尉
$text = [io.file]::ReadAllLines('1.txt', [text.encoding]::Default); foreach($line in $text) { if ($line -notmatch ':') { if( ($line -match '\s+(\d+),') -and ([int]$Matches[1] -ge 5) ) {$line} } else { if( ($line -match '\s+(\d+),') -and ([int]$Matches[1] -ge 2) ) {$line} } }复制代码
TOP
tigerpower 当前离线
四级士官
powershell -c "gc 1.txt|?{$_ -match '(?m)^\S+\s+((\d\d|[5-9]),\S+$|\S+\s+(\d\d|[2-9]),\S+$)'}复制代码
评分人数