Powershell - Escape Character
About
The escape character in Powershell is the backtick.
Example
- Echo
echo "`"Hello`""
# Regexp
echo '`[Hello`]'
"Hello"
- With Regexp, you need to use a single quote
'`[Hello`]'
The escape character in Powershell is the backtick.
echo "`"Hello`""
# Regexp
echo '`[Hello`]'
"Hello"
'`[Hello`]'