[Solved] How to replace $ with $`?


$ has a special meaning in Regex so you have to write $$` if you want to replace something with “dollar sign backtick”. Explanation @ learn.microsoft.com

solved How to replace $ with $`?