How can I replace the "\" in a string with a double slash "\\"?
I tried String.Replace("\","\\") but then intellisense stops working :(
Thanks!
|
How can I replace the "\" in a string with a double slash "\\"? I tried String.Replace("\","\\") but then intellisense stops working :( Thanks! |
|||||
|
|
Try:
This is because a character can follow \, which makes a special character. \" means put a literal double quote in the string, rather than close it. Here are some common ones: The other answers, which say to use |
|||||
|
|
Alternatively, |
|||
|
|