Hi,
I have a list of lists of elements and I need to split each list into several lists whenever I find an element which is not a pipe.
So my output needs to be:
0 List
0 Pipe 659762
1 Pipe 659777
2 Pipe 659793
1 List
0 Pipe 659801
2 List
0 Pipe 659866
Can I do this without resorting to Python?