I need extract data from a JSON array, format '[[[1,2,3]],[[1,2,3],[1,2,3]],"string"]' in Qt. logically it's '[[[x-values]],[[y1-values],[y2-values]],"comments"]'.
Edit: x,y1,y2 arrays can be up to 1000+ elements large.
I know that that's the exact format (without the single quotes) and that it's not going to change.
What I really want is QVector xval, y1val; .
How would I parse that?
(I'm new to Qt so please forgive me if I'm missing the obvious.)