1. 程式人生 > >python3 清除過濾emoji表情

python3 清除過濾emoji表情

nbsp emoji error: exc des htm def pytho error

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表情