Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 4 down vote accepted

You can replace a backslash followed by a quote with just a quote via a regular expression and the String#replace function:

x = x.replace(/\\"/g, '"');

Live example

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 g at the end of the regex tells replace to work throughout the string ("global"); otherwise, it would replace only the first match.

share|improve this answer
1  
Doesn't produce the desired output ;) – Felix Kling Jul 10 '11 at 9:56
1  
@Felix: Yeah, bit of a "doh!" when I went to do the live example. :-) Fixed it. All those backslashes... – T.J. Crowder Jul 10 '11 at 9:57
I know that feeling :D – Felix Kling Jul 10 '11 at 9:57

Try this:

x = x.replace(/\\/g, "");
share|improve this answer
var x = "<div class=\\\"abcdef\\\">";
alert(x.replace(/\\/gi, ''));
share|improve this answer
1  
The i modifier is not needed here. – Felix Kling Jul 10 '11 at 9:58

Let me propose this variant:

function un(v) { eval('v = "'+v+'"'); return v; }

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.