Skip to content

Instantly share code, notes, and snippets.

@ovuruska
Created September 2, 2022 10:41
Show Gist options
  • Save ovuruska/211092dfd5be5a696595cf83303073c6 to your computer and use it in GitHub Desktop.
Save ovuruska/211092dfd5be5a696595cf83303073c6 to your computer and use it in GitHub Desktop.
Replace all emojis in a string in Javascript
text.replace(/([\u2700-\u27BF]|[\uE000-\uF8FF]|\uD83C[\uDC00-\uDFFF]|\uD83D[\uDC00-\uDFFF]|[\u2011-\u26FF]|\uD83E[\uDD10-\uDDFF])/g, '');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment