Is there a way to remove all punctuation without using a loop?
I tried regexreplace, but its throwing errors, so either I'm not using it correctly, or its broken.
What about using a bunch of replaces?
replace(replace(replace(text, ",", ""), ".", ""), "?", "") etc.
Develop games in your browser. Powerful, performant & highly capable.
Yeah that will work.
Chaining expressions in Construct, good times.