I have a need to replace single backslashes with double backslashes. I know that the replace method of the string object can be used, however I'm not able to figure out the correct combination given that the backslash serves as an escape character.
\\[string]\[string]\[string]
Needs to become
\\\\[string]\\[string]\\[string]


Reply With Quote
Bookmarks