Вы можете попробовать что-то вроде этого:
$origString -replace "(IF /I `"%)(.+)(:.+%`"==`")(.+`")(.+)",'if ($$$2 -match "^$4" ) {$5 }'
Обратите внимание на $$$2
.Это оценивает $
и содержание $2
.
Некоторый код, чтобы показать вам различия.Попробуйте сами:
'abc' -replace 'a(\w)', '$1'
'abc' -replace 'a(\w)', "$1" # "$1" is expanded before replace to ''
'abc' -replace 'a(\w)', '$$$1'
'abc' -replace 'a(\w)', "$$$1" #variable $$ and $1 is expanded before regex replace
#$$ and $1 don't exist, so they are expanded to ''
$$ = 'xyz'
$1 = '123'
'abc' -replace 'a(\w)', "$$$1`$1" #"$$$1" is expanded to 'xyz123', but `$1 is used in regex