I am looking for a proper version of a JavaScript equivalent of PHP's addSlashes.

I have found many versions, but none of them handle \b, \t, \n, \f or \r.

http://jsfiddle.net/3tEcJ/1/

To be complete, this jsFiddle should alert: \b\t\n\f\r"\\

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
function addslashes(string) {
    return string.replace(/\\/g, '\\\\').
        replace(/\u0008/g, '\\b').
        replace(/\t/g, '\\t').
        replace(/\n/g, '\\n').
        replace(/\f/g, '\\f').
        replace(/\r/g, '\\r').
        replace(/'/g, '\\\'').
        replace(/"/g, '\\"');
}

Notice how I've used \u0008 to replace \b with \\b. JavaScript's regex syntax doesn't appear to accept \b, but it does accept \u0008. JavaScript's string literal syntax recognises both \b and \u0008.

link|improve this answer
FWIW replace(/\b/g, '\\b') didn't work in my testing on jsfiddle. – Sean Bright Aug 23 '11 at 14:06
I've just noticed that, and edited my answer to use \u0008, which works. Seems like an inconsistency where JavaScript's regex syntax doesn't recognise \b. – Delan Azabani Aug 23 '11 at 14:08
Thanks, works great. – GAgnew Aug 23 '11 at 14:11
No problem; I'm happy to help! – Delan Azabani Aug 23 '11 at 14:12
feedback

Your Answer

 
or
required, but never shown

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