Here is my set:
| makeresults
| eval _raw="[[\"A\",\"AA\"],[\"B\",\"BB\"],[\"C\",\"CC\"]]"
|spath path={}{} output=data
I would like to have 3 distinct tuple the A together and B together and C together, but i have all in one line with my request.
I can do something like
|spath path={0}{} output=data0
|spath path={1}{} output=data1
|spath path={2}{} output=data2
but i'm looking for something more dynamic :)
Any idea?