我有一个大的日志文件,我想提取(写入新文件)某些行。问题是我之前需要一行和一行。所以正则表达式应该应用于多行。 Notepad ++无法做到这一点,我不想为此编写脚本。
我认为我可以用Powershell和单线程做到这一点,但我不知道从哪里开始......
正则表达式不是问题,类似于^#\d+.*?\n.*?Failed.*?$
那么,如何使用Powershell打开文件,传递正则表达式并获取适合我表达式的行?
答案 0 :(得分:8)
查看Select-String
和-context
参数:
如果您只需要显示匹配的行和之前的行,请使用 (对于测试,我使用我的日志文件和我的正则表达式 - 那里的日期)
Get-Content c:\Windows\System32\LogFiles\HTTPERR\httperr2.log |
Select-String '2011-05-13 06:16:10' -context 1,0
如果您需要进一步操作它,请将结果存储在变量中并使用属性:
$line = Get-Content c:\Windows\System32\LogFiles\HTTPERR\httperr2.log |
Select-String '2011-05-13 06:16:10' -context 1
# for all the members try this:
$line | Get-Member
#line that matches the regex:
$line.Line
$line.Context.PreContext
如果有更多行与正则表达式匹配,请使用括号访问它们:
$line = Get-Content c:\Windows\System32\LogFiles\HTTPERR\httperr2.log |
Select-String '2011-05-13 06:16:10' -context 1
$line[0] # first match
$line[1] # second match