Hi,
I want to split an expression with a semicolumn as delimiter.
With usual expressions like "1;2;3;4", it works and it gives me 4 values with 1, 2, 3 and 4.
But if one of the values is empty , it doesn't return this empty values. For instance, with "1;;3;4", it gives me only 3 values with 1, 3 and 4 while I'm expecting 1, (empty), 3 and 4. And so, my results are all shifted
Do you know how to make it work
Thanks