$lines = '<string>D:\home\bob\utility.mdb</string>'
[String[]]$varr = $lines | Select-String -AllMatches -Pattern "<string>*.mdb" |
Select-Object -ExpandProperty Matches |
Select-Object -ExpandProperty Value
这是返回空值。
最终我想要整条线,从<string>
到</string>
.
但显然我不知道如何在 powershell 中表达这一点。