Am 12.10.2013 um 23:33 schrieb Don Clark <[email protected]>: > Are you saying that it's not necessary to manually unescape with the version > of JSONMBS that's included with 13.4?
It should not be needed as this plugin returns Stringvalues unescaped. // some string with single/double quote and EndOfLine dim s as string = "Hello'World"+EndOfLine+"this is "" a test." // make string node dim j as JSONMBS = JSONMBS.NewStringNode(s) // get as JSON dim d as string = j.toString // show MsgBox d // parse again j = new JSONMBS(d) MsgBox j.ValueString > Is there any documentation on the changes you made - I'll read it and > probably have a lot fewer questions. Sorry, no. Greetings Christian -- Read our blog about news on our plugins: http://www.mbsplugins.de/ _______________________________________________ Mbsplugins_monkeybreadsoftware.info mailing list [email protected] https://ml01.ispgateway.de/mailman/listinfo/mbsplugins_monkeybreadsoftware.info
