West Wind Internet and Client Tools
"\t" characters ending up in my JSON
The characters "\t" are ending up in my JSON string. Like this:
"breeds": [
"\tRedPoll",
"\tSimmentalCross",
"\tTigerstripe",
"\tWhitePark"
],
I guess they represent tab characters, but I have no tabs in the data and I tried to strip chr(9) with STRTRAN() out just to make sure but no matter what I do I cannot get rid of them.
Any ideas?
Pretty sure there's tabs in your data, otherwise it wouldn't render this way. What are you serializing exactly and what code are you running?
Please post a repro scenario with a simple use case.
+++ Rick ---