使用Powershell和regex分割字符串

时间:2018-09-17 00:09:20

标签: regex powershell

使用Powershell和正则表达式。在拆分以下字符串时,我需要一些帮助。

arn:aws:elasticloadbalancing:us-east-1:123456789012:targetgroup/AB-EXCHA/10a0497e85a88b21

我需要的是上述字符串中的以下内容 targetgroup/AB-EXCHA/10a0497e85a88b21

1 个答案:

答案 0 :(得分:0)

powershell从来没有做任何事情,但这会打印您想要的字符串:

$matches = "arn:aws:elasticloadbalancing:us-east-1:123456789012:targetgroup/AB-EXCHA/10a0497e85a88b21" | Select-String -pattern "(targetgroup.*)"
$($matches.matches.groups[1]).value

结果:

targetgroup/AB-EXCHA/10a0497e85a88b21