Dear colleagues.
I have a list to change the parameters of multiple processes using [textdefine].
But the size varies between lines, and I would like to split the list whenever I have a new symbol (which will later indicate which process I'm changing, that's already done.)
Example:
ps 0 fft -1 -2 hip 5 0.4 9,3;
fft 0 1 hip 0 1 2;
lop 0 1 2 3;
gran 0 1 2 3 4;
add 0 1 2 3 4 5 sdel 0 1 2 3 4 5 6;
Even though I can use commas to separate them, I need bang only one time per line, independently of its size.For example, when banging only once the first line I have it split into 3 lists:
ps 0
fft -1 -2
hip 5 0.4 9.3
thanks.