Hi,
Is there a way/expression i could use to remove spaces from a string?
Eg, "Hello My Name Is John" --> "HelloMyNameIsJohn"
Develop games in your browser. Powerful, performant & highly capable.
trim("Hello My Name Is John")
Manual entry on system expressions
replace("My text message"," ","")
Cheers,
Greg