I have this var
var x = "<div class=\\\"abcdef\\\">";
Which is
<div class=\"abcdef\">
But I need
<div class="abcdef">
How can I "unescape" this var to remove all escaping characters?
|
I have this var
Which is
But I need
How can I "unescape" this var to remove all escaping characters? |
|||
|
|
|
You can replace a backslash followed by a quote with just a quote via a regular expression and the
Note that the regex just looks for one backslash; there are two in the literal because as in a string literal, you have to escape backslahes in regular expression literals...with a backslash. The |
|||||||||||
|
|
|||||
|
|
Let me propose this variant:
This function will not simply remove slashes. Text compiles as code, and in case correct input, you get right unescaping result for any escape sequence. |
|||
|
|