You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently per the JSON standard, carriage returns, line feeds, and tabs are
escaped inside strings in serialization output.
Have an option to turn this off for more readable output.
EscapeWhitespace
Original issue reported on code.google.com by [email protected] on 5 Nov 2008 at 4:50
The text was updated successfully, but these errors were encountered:
I think this should be a default, but it could be optional I supposed, but
double
quotes in strings are getting escaped. That is if the string being serialized
is "My
name is "Gary"." using either '\"' or with verbatim strings @"""" the serialized
string that results is: "My name is \"Gary\".". Let me know if there is an
existing
work-around (other than using "'").
Thanks.
This issue actually pertains to escaping whitespace, not quotes. There's
not really a workaround for what you are trying to do since that is how
quotes are supposed to be escaped according to the JSON standard. What are
you expecting to see?
Original issue reported on code.google.com by
[email protected]
on 5 Nov 2008 at 4:50The text was updated successfully, but these errors were encountered: