我有以下的文本文件如何從文本文件中提取子字符串?
testA=foo
testB=foobar
testC=Whatever
現在我想提取值testB
這是foobar
。以我目前的PowerShell命令,我只能收到整條生產線:
testB=foobar
我的命令是:
Select-String -Path .\test.txt -Pattern "testB=" -List
我看到有替換功能的字符串,這樣你就可以用空代替testB=
字符串,但我不知道如何實現這一點。
嗯,好吧我怎麼能額外修剪值。 ? –
只需在'.Matches.Groups [1] .Value'後面添加'.Trim()'' –
應該是.Matches [0] .Groups改爲.Matches.Groups –