From what I can see this extracts a json string, I want to do it in reverse, I want to know how to build the json string. Or am I looking at this wrong?
your text above was a JSON string but it is confusing because it contains ", the char " is just a byte with value 34
it used the lib Json
and a map to generate a json
B4X:
Dim M As Map
M.Initialize
M.Clear
M.Put("MyKey ABC","MyValue 123")
Dim J As JSONGenerator
J.Initialize(M)
Dim Output As String = J.ToPrettyString(4)
Log(Output)