在字符串powershell中获取某些文本

时间:2013-09-09 06:55:54

标签: string powershell

我希望在此字符串中输入“localhost”(或任何文本):

XML-Execute-Result: <host>localhost</host>

我想要一种通用方法,比如重用表达式值的方法 (比如在Linux中使用sed)

sed 's/*[0-9]$/\$&/'

非常感谢您的回复

2 个答案:

答案 0 :(得分:1)

$text = "XML-Execute-Result: <host>localhost</host>"
if ($text -match "\<host\>(?<host>.*?)\</host\>")
{
    $myhost = $matches.host
}

答案 1 :(得分:0)

PS> if ($text -match "<host>(.*?)</host>") {$matches[1]}
localhost