I'm trying to remove emoji on Select query. I'm using MariaDB 10.3.14
Here's what I came up so far, but it doesn't work. It echoes all the string.
SELECT REGEXP_REPLACE("<çşığ_loremipsumdolor", '/([\x10000-\x10FFFF]+)/g', '')
There will be some non-English, even some HTML tags in the actual string.
What I want to achieve from this string is <çşığ_loremipsumdolor
.
How do I remove emoji from string using MariaDB 10.3?
Thanks in advance,