vote up 1 vote down star

i'm using jquery to output the results of a json string created by php from a database,

the only problem is, that some of the data is on multiple lines... how would i get around this causing a unterminated string literal error in javascript?

flag

2 Answers

vote up 2 vote down check

Escape line endings by replacing "\n" with "\\n" and "\r" with "\\r". You will also want to escape single or double quotes, depending on which you are using to delimit the string.

link|flag
I think you need to edit your answer because you obviously don't want to replace "\r" with "\r" I think. – Clement Herreman Sep 22 at 11:57
Heh, needed to do a bit of escaping myself :) – Jeff Ober Sep 22 at 11:59
this is an idea, however there are no \n to escape... its all basically data from a database so there are no physical line breaks in there unless i change all new lines to \\n on data entry... but how would i go about that? – Neil Hickman Sep 22 at 12:02
Line breaks are those characters. If you perform a regular expression replacement or string replacement using those characters, it will work. – Jeff Ober Sep 22 at 12:06
1  
Then json_encode does not appear to be escaping its output correctly. It could be a bug in the version you are using. Before passing it to json_encode, replace instances of "\r" and "\n" in likely strings with doubly-escaped versions. – Jeff Ober Sep 22 at 12:57
show 10 more comments
vote up 2 vote down

The following code will get rid of all \r and \n characters.

preg_replace('/[\r\n]+/', "", $stringFromDB)
link|flag

Your Answer

Get an OpenID
or

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