0
首先,問一個非常簡單的問題,因爲我是全新的PowerShell的同學。如果搜索字符串匹配,只能讀取PowerShell中的特定字詞
我有文件,如:
"your>desired>output" START: this is th
e output
next line
next line
"your>desired>output" START: this is th
e output
如果「期望」這個詞被發現,不是隻讀「產出」比 「這是輸出」
如果我使用
我的任務是Select-String *.txt -pattern "desired"
大於輸出是
"your>desired>output" START: this is th
「電子輸出」丟失。
任何形式的幫助表示讚賞。謝謝。
'選擇字符串* .TXT 「期望」 -Context 1 |%{$ _線。 $ _。Context.PostContext}' –
@ MathiasR.Jessen檢查一個關於上下文的欺騙,但你也可以做出答案(當然有一點解釋) – Matt
@ MathiasR.Jessen謝謝你的迴應,但這並沒有返回任何東西...... :(顯示爲錯誤,我在「期望」之前使用了額外的模式 – user6633897