Javascript and backslashes replace
        Posted  
        
            by Frankie
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Frankie
        
        
        
        Published on 2010-03-19T17:27:21Z
        Indexed on 
            2010/03/19
            17:31 UTC
        
        
        Read the original article
        Hit count: 752
        
here is my string:
var str = "This is my \string";
This is my code:
var replaced = str.replace("/\\/", "\\\\");
I can't get my output to be:
"This is my \\string"
I have tried every combination I can think of for the regular expression and the replacement value.
Any help is appreciated!
© Stack Overflow or respective owner