python3 清除过滤emoji表情
Posted du-jun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 清除过滤emoji表情相关的知识,希望对你有一定的参考价值。
https://www.cnblogs.com/lizm166/p/9662995.html
def filter_emoji(desstr,restr=‘‘): #过滤表情 try: co = re.compile(u‘[U00010000-U0010ffff]‘) except re.error: co = re.compile(u‘[uD800-uDBFF][uDC00-uDFFF]‘) return co.sub(restr, desstr)
以上是关于python3 清除过滤emoji表情的主要内容,如果未能解决你的问题,请参考以下文章