core.noscript.text
How to remove leading 0 after any whitespace in a string. For example:
"415 09th Street" -> "415 9th Street"
Solved! Go to Solution.
Hi @Muyi ,
Try replace([Field1],' 0',' ') : replace 'space and 0' with space .
Thank you! It worked!