I need help with a regex that allows everything but doesn't allow emojis. I have tried searching and building a solution with the
regexp.match(([\u2700-\u27BF]|[\uE000-\uF8FF]|^\uD83C[\uDC00-\uDFFF]|^\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|^\uD83E[\uDD10-\uDDFF]))
The requirement is that I cannot use the replace method So, I need help with a solution that simply doesn't allow the emojis in the form
EDIT* I need a regex that i can use in XML directly and does not take any javascript method be it test(), match() etc. because we wont be moving to any js file. it would just be an xml form.
TIA