vote up 0 vote down star

My strings will hold the values:

"["
"[/blah]"

do I need to escape anything?

Is it just doubling the /?

flag

44% accept rate

4 Answers

vote up 3 vote down check

you don't have to do anything / is not a special character

link|flag
vote up 2 vote down

If your string are "[" "[/blah]", then you don't need to escape anything if you use single quote:

var foo = '"[" "[/blah]"';
link|flag
vote up 1 vote down

Since this is a literal string square brackets or forward slash will not be interpreted so in your example you don't need to escape anything. Doubling applies to a backward slash only \

link|flag
vote up 0 vote down

Escape for what purpose? I at least don't see any XSS risks in the particular string.

link|flag

Your Answer

Get an OpenID
or

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