If I have a JSON string with an embedded array like this…
testJSON string(’{{“Result”:[’ & |
‘{{“resourceskill”:[“Joiner”,“Plumber”,“Electrician”],“starttime”:“2021-06-25 08:05”},’ & |
‘{{“resourceskill”:[“Joiner”,“Plumber”],“starttime”:“2021-06-28 08:05”}’ & |
‘,{{“resourceskill”:,“starttime”:“2021-06-29 08:05”}’ & |
‘]}’)
I can parse the ‘result’ array out and put it into a queue, but I can’t quite work out how to get the embedded resourceskill array out.
Difficult to explain but see attached zip for example
ParseTest.zip (1.7 KB)