Hello.
I have a textbox and dont want the user to enter Emojis, or if they enter emojis, I want to ignore them and only get the text.
I've found this post: Helpful things you need to know where is a block to filter emojis, but I cant get it working.
Filter Emojis
To remove emojis in the text we will use :
replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g, ''
I've added the Webviewer (home URL is empty) and this blocks to test it.
In the ShowAlertNotice, I see the exact text I've entered in the TextDialog, with the emojis included.
What should I do??
Thank you very much,