I must replace a value in a file. This works for normal text with this command
(Get-Content $file) | Foreach-Object {$_ -replace "SEARCH", "REPLACE"} | Set-Content $file
But now, the search text is "$(SEARCH)" (without quotes). Backslash escaping the '$' with '`$' doesn't work:
(Get-Content $file) | Foreach-Object {$_ -replace "`$(SEARCH)", "BLA"} | Set-Content $file
Any ideas? Thank you.
The
-replace
operator is actually a regular expression replacement not a simple string replacement, so you've got to escape the regular expression:Note that you can suppress string interpolation by using single quotes (') of double quotes (") around string literals, which I've done above.