vote up 0 vote down star

Hello,

Does JavaScript have a built-in function like PHP's addslashes (or addcslashes) function to add backslashes to characters that need escaping in a string?

For example, this:

This is a demo string with 'single-quotes' and "double-quotes".

...would become:

This is a demo string with \'single-quotes\' and \"double-quotes\".

Thanks,

Steve

flag

"Need escaping" for what purpose? There are many different reasons to escape strings, and the correct way to do it can be different depending on the goal. (e.g., PHP's addslashes() is usually the wrong solution when SQL is involved: a better solution is parameterized queries) – Miles Apr 21 at 0:19
I'm actually developing an Apple Dashboard Widget, and I want my strings to be properly escaped before using them in Terminal commands via "widget.system". – Steve Harrison Apr 21 at 1:17

1 Answer

vote up 4 vote down check

http://kevin.vanzonneveld.net/techblog/article/javascript_equivalent_for_phps_addslashes/

function addslashes( str ) {
    return (str+'').replace(/([\\"'])/g, "\\$1").replace(/\0/g, "\\0");
}
link|flag
1  
So then the answer is "no, there is no built-in function like PHP's addslashes" – Rick Copeland Apr 20 at 23:58
Yes, that is the answer. – Paolo Bergantino Apr 21 at 0:04
Good, I'll add this function to my [ever growing] collection of functions/methods that are missing from JavaScript... Thanks! – Steve Harrison Apr 21 at 0:55

Your Answer

Get an OpenID
or

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