I am running into an issue where users may enter emojis in my survey in a free text notes field. This isn't an issue until I create a Survey123 Report.
I am looking for help to create a regex formula which will allow regular words, numbers and punctuation but exclude emojis. I have tried using Regex 101 and ChatGPT - the formulas pass in Regex 101 but fail in Survey123.
Here is the latest iteration: regex(.,"^[\p{L}\p{N}\p{P}\p{Zs}]+$").
Any help would be appreciated.