Closed worksofliam closed 2 years ago
jobBackSlash
coming back as 00
.
Tried this, but had the same result.
json_setDelimiters(json_DELIMITERS);
pJson = json_ParseString (
'{ +
a:"A native unicode \u00b5 string", +
b:"A not native unicode \u2318 string", +
c:"Escaped: Backslash \\ newline \n double quote \" will be stored in their hex value"+
}'
);
Got it! A cool new API :)
json_setDelimitersByCcsid(0);
pJson = json_ParseString (
'{ +
a:"A native unicode \u00b5 string", +
b:"A not native unicode \u2318 string", +
c:"Escaped: Backslash \\ newline \n double quote \" will be stored in their hex value"+
}'
);
You are too fast !! Did not even have time to look at it !!
On Thu, Dec 9, 2021 at 9:38 PM barry @.***> wrote:
Closed #59 https://github.com/sitemule/noxDB/issues/59.
— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/sitemule/noxDB/issues/59#event-5743433385, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAVIPHT2W5563RLTMWNCZBDUQEHVBANCNFSM5JXM2G4A .
For some reason, double quotes are not being escaped, but other characters are. Built from master.