标签: powershell powershell-v3.0
在每个文件中都有一个“ Name”,并且总是这样写: name="That isn't the same"。
Name
name="That isn't the same"
现在如何选择“”之间的所有内容并将其放入变量中以替换为另一个变量?我尝试过这样的事情:
$stringtofind = 'name="*"'
答案 0 :(得分:0)
我将使用正则表达式:
'name="That isnt the same"' -match "`"(.+)`"" $stringtofind = $Matches[0]