Hi,
I have a message box listing floats (1 or 0). I want to have the number of 0s following every 1. I thought that I first needed to slice the list into smaller ones so that:
[1 0 0 1 1 0 1 0(
would show as :
[1 0 0( [1( [1 0( [1 0( .
I searched list-abs but couldn't find the right object to do that. I came across a
[list-split-at] object, but I get a message box where lists are separated by semi-colons, which I don't know how to unpack.
I sense there is a simple solution to this but can't find it!
Anyone has an idea, please?