是否可以对文件中的特定字符串进行计数并将值保存在变量中?
对我来说,它将是字符串“/ export”(不带引号)。
最佳答案
这是一种方法:
$FileContent = Get-Content "YourFile.txt"
$Matches = Select-String -InputObject $FileContent -Pattern "/export" -AllMatches
$Matches.Matches.Count
关于powershell - 使用PowerShell计算文本文件中的特定字符串,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29889495/