vote up 0 vote down star

Hi,

My JSON request seems to be failing because of line breaks (I am programatically weaving my own JSON string).

How can I escape for line breaks?

{"rc": "200", "m" : "", "o": "<div class='s1'>
            <div class='avatar'>                    
                <a href='\/asdf'>asdf<\/a><br \/>
                <strong>0<\/strong>
            <\/div>
            <div class='sl'>
                <p>
                    444444444
                <\/p>
            <\/div>
            <div class='clear'>
            <\/div>                        
        <\/div>"}

string jsonString = BuildJSON(someCollection).Replace(@"/", @"\/");

flag

44% accept rate
Why are you reinventing the wheel? – Daniel A. White Jun 15 at 23:41
If you are going to ask this in a new question, can you accept an answer in stackoverflow.com/questions/993970/… ? – Kevin Hakanson Jun 15 at 23:47

4 Answers

vote up 0 vote down

Before you build that string do a replace with \n.

link|flag
replace what with \n? – mrblah Jun 15 at 23:49
newline characters are \n in JavaScript. You need to check your file to see what en.wikipedia.org/wiki/Newline 's are being used, and replace them. So it ends up as: {"rc": "200", "m" : "", "o": "<div class='s1'>\n <div class='avatar'> \n <a href='\/asdf'>asdf<\/a><br \/>\n <strong>0<\/strong>\n <\/div>\n <div class='sl'>\n <p>\n 444444444\n <\/p>\n <\/div>\n <div class='clear'>\n <\/div> \n <\/div>"} – artlung Jun 17 at 23:20
vote up 0 vote down

I think you might be causing yourself a problem in your example... you don't need to escape the / character, just any \ characters. So \/ is actually wrong and it should just be /.

Any instances of \ should be changed to \.

Try it with this amendment.

Example of stripping out line breaks can be found here:

http://www.bennadel.com/blog/161-Ask-Ben-Javascript-Replace-And-Multiple-Lines-Line-Breaks.htm

link|flag
vote up 0 vote down

You should be able to escape the line breaks by calling .Replace("\n","\n").

link|flag
vote up 0 vote down

You should not need to serialize JSON on your own. Use .NET to do it for you:

JavaScriptSerializer jsonSerializer = new JavaScriptSerializer();

string JSON = jsonSerializer.Serialize(new {
    rc = 200,
    m = "",
    o = "<div>...</div>" });

The full namespace name of the serializer is: System.Web.Script.Serialization.JavaScriptSerializer.

link|flag

Your Answer

Get an OpenID
or

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