Hi,
I think my problem is really simple but can’t figure out, I would like to take item of a @4 levels nested lists.
The goal is to keep list structure exactly the same but take only the “P01”.
thanks !
You’d have to have nested GetItemAtIndex nodes. This is much simpler (and cleaner) using design script.
list[0][0][0] will get you the item at index 0 of sublist index 0 of list 0.
Many thanks, I can extract the value, but I need to have the substructure intact.
list
list
list
P01
P02
P03
P04
list
P01
P02
P03
P04
Like this.
However, neither level for GetItemAtIndex node or code block seems working…
(The P01 value is an example, I look like to the other values)
Beautiful !
Was just in front of my face 
Many thanks Thomas !
Thanks for help !