I want to remove all zeros left and right of a number but not between.
Ist this with a string manipulation possible? The length of the number is always different.
For example the initial number is:
000L214637400732000
and I expect this number after the string manipulation as result: L214637400732
This is not elegant solution but has to work. Use String manipulation node with the next set of functions
replace(strip(replace($column1$,“0” ," " )), " ", “0”)