Powershell 在找到另一个字符串后提取字符串

Powershell to Extract String after finding another string

我正在寻找一种方法来查找文件中的字符串,然后提取该字符串和分隔符之间的所有内容。我可以从文件中取出 LINE,但我对如何从中取出我想要的字符串有点难过。

文件的行是这样的:

<add key="ConnectionString" value="Data Source=xxxxxx;Initial Catalog=Database;Integrated Security=True" />

我可以找到 "Data Source=",但我想 return "xxxxxx"。这是我正在使用的:

((Get-Process -Name "db-engine").Path ) + '.Config' | Select-String -Path {$_} - Pattern 'Data Source='

这给了我上面的整个 "add key" 行。

在此先感谢您的帮助!

编辑:感谢您的回复。在做了更多挖掘之后,看起来 "more proper" 方法实际上是使用 [xml] 将文件内容拉入 xml 对象。然后我可以获取值并使用 split 将数据分解成我需要的块。最终代码将如下所示:

$configpath     = ((Get-Process -Name "db-engine").Path)
$linepath       = $configpath + ".Config"
[xml]$xmlfile   = get-content $linepath
$xmlvalue       = ($xmlfile.configuration.appSettings.add | where {$_.key -eq "ConnectionString"}).value
$server         = $xmlvalue.split(";=")[3]
$db             = $xmlvalue.split(";=")[5]  

仍在解决问题,但这似乎让我走上了正确的道路。 Split 将输入分解为一个数组,因此 [x] 让我调用一个特定的元素。拆分中有多个定界符,它会在其中任何一个处打断输入。也许这可以在将来帮助其他人。

感谢大家的帮助!

就个人而言,我只是获取属性的值——可能使用带有 Select-Xml 的 XQuery——然后用分号拆分它,然后使用 ConvertFrom-StringData:

$xml = [xml]'<add key="ConnectionString" value="Data Source=xxxxxx;Initial Catalog=Database;Integrated Security=True" />';
$ConnectionString = ($xml | Select-Xml -XPath '/add[@key="ConnectionString"]/@value').Node.'#text'
$DataSource = ($ConnectionString.Split(';') | ConvertFrom-StringData).'Data Source'

我同意@Bacon Bits - 如果你有一个 xml 文件,那么你可能要考虑这样处理它。如果要使用 Select-String,可以使用 MatchInfo 的捕获组。使用命名组的示例:

 gc .\dataSource.txt | Select-String -Pattern 'Data Source=(?<ds>.+?);' | % { $_.Matches[0].Groups['ds'].Value }