i want to remove emojis from XML files. A typical example string could be something like:
input: <UserName>JANE - MARIE ��➡️</UserName>.
I want to have only:
OUTPUT : <UserName>JANE - MARIE</UserName>.
I tried to use sed but im not good with regular expression , can anyone help me , or suggerd me another function ?
THANKS