Skip to content

Instantly share code, notes, and snippets.

@seahrh
Forked from Alex-Just/strip_emoji.py
Created February 12, 2023 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seahrh/b5e398fa71f959218f33b899c8dcc11a to your computer and use it in GitHub Desktop.
Save seahrh/b5e398fa71f959218f33b899c8dcc11a to your computer and use it in GitHub Desktop.
Python regex to strip emoji from a string
import re
# http://stackoverflow.com/a/13752628/6762004
RE_EMOJI = re.compile('[\U00010000-\U0010ffff]', flags=re.UNICODE)
def strip_emoji(text):
return RE_EMOJI.sub(r'', text)
print(strip_emoji('🙄🤔'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment