I'd like to write a function that works reliably to get the string literal from a JavaScript string---we can call it f.

For example:

f('hello world') //-> 'hello world' (or "hello world")
f('hello "world"') //-> 'hello "world" (or "hello \"world\"")
f("hello 'world'") //-> "hello 'world'"
f("hello \"'world'\"") //-> "hello \\\"'world'\\\""
f("hello \n world") //-> "hello \\n world"

And so for any string str

str = eval(f(str))

I don't care about the single quotes thing too much.

I currently am just doing:

var f = function(str) {
  return '"' + str.replace(/"/g, '\"') + '"';
}

but that obviously doesn't cover everything.


This is for a documentation system.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 0 down vote accepted

If I've read what your after correctly, how about;

var Map = {
    10: "n",
    13: "r",
    9:  "t",
    39: "'",
    34: '"',
    92: "\\"
};
function f(str) {
    var str = '"' + str.replace(/[\n\r\t\"\\]/g, function(m) {
        return "\\" + Map[m.charCodeAt(0)]
    }) + '"';
    print(str);
}

f('hello world') //-> 'hello world' (or "hello world")
f('hello "world"') //-> 'hello "world" (or "hello \"world\"")
f("hello 'world'") //-> "hello 'world'"
f("hello \"'world'\"") //-> "hello \\\"'world'\\\""
f("hello \n world") //-> "hello \\n world"

>>"hello world"
>>"hello \"world\""
>>"hello 'world'"
>>"hello \"'world'\""
>>"hello \n world"
link|improve this answer
feedback

Using phpjs's addslashes:

function f(str) {
    return "\"" + addslashes(str) + "\"";
};

http://jsfiddle.net/Xeon06/vT3zv/

link|improve this answer
Ah, that doesn't work for \n. I understand your problem now. – Xeon06 Oct 11 '11 at 15:22
feedback

Your Answer

 
or
required, but never shown

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