i'm currently having an problem, i don't know how to make regex match special characters whilst ignoring emojis.
Example, i want to match the special chars that are not emojis in this string: ❤️❤️
currently as my regex i have
[^\x00-\x7F]+
Current output: ❤️❤️
Wanted output:
How would i go around fixing this?