Hi All
What am I doing wrong here ??
After using a + sign in front of my data its works fine but without it, i get weird data back ???
In my code retrieve a JSON string
If res.StartsWith ("[{") Then
parser.Initialize(res)
TankData.Clear
TankData=parser.NextArray
' Set data
TmpMap = TankData.Get(0)
Different JSON means Different result, but its a number , why does A: fail ??
A: [{"BatchNo"
:0222007036}] then Log( TmpMap.Get("BatchNo")) gives 0038276638 ?
B: [{"BatchNo":
+0222007036}] then Log( TmpMap.Get("BatchNo")) gives 0222007036
<- Correct
Hope someone knows ..