I'm working with a 3rd party web service and it's returning a string like the below. I'm completely stuck on how to parse this into a usable format. It appears it's an array, just in text format.
[["theData",{"something":somevalue,"details":null,"somethingElse":"something"},0]]
It could also have multiple, like
[["theData",{"something":somevalue,"details":null,"somethingElse":"something"},0],["theData",{"something":somevalue,"details":null,"somethingElse":"something"},0]]
I've tried setting the HTTPService result type as array/arraycollection, that doesn't work. The only thing I can think is to do some sort of string split/join.