如何选择“”之间的所有内容并将其另存为变量?

时间:2018-08-17 08:19:56

标签: powershell powershell-v3.0

在每个文件中都有一个“ Name”,并且总是这样写: name="That isn't the same"

现在如何选择“”之间的所有内容并将其放入变量中以替换为另一个变量?我尝试过这样的事情:

$stringtofind = 'name="*"'

1 个答案:

答案 0 :(得分:0)

我将使用正则表达式:

'name="That isnt the same"' -match "`"(.+)`""
$stringtofind = $Matches[0]