I'd suggest in this case to take the original JSON String from Request.HttpResponse.Data
and split it by "LineNumber":
eg:
for line =2:1:$l(json,sep) set line(line)=+$p(json,sep,line)
and you get
line=3
line(2)=0
line(3)=1
I admit it's not very object-ish but efficient
- Log in to post comments