Domanda

I'm trying to replace backslashes in my string with two backslashes like so:

s = s.replace("\\", "\\\\");

But, it doesn't do anything. Example string:

s="\r\nHi\r\n";
È stato utile?

Soluzione

The string doesn't contain a backslash, it contains the \r escape sequence.

Working example

For example

var str = "\r\n";
var replaced = str.replace('\r\n', '\\r\\n');
alert(replaced);

Then the alert will be shown \r\n

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top