微信过滤表情包

public String filterEmoji(String source) {
    if (source == null) {
        return source;
    }
    Pattern emoji = Pattern.compile("[\ud83c\udc00-\ud83c\udfff]|[\ud83d\udc00-\ud83d\udfff]|[\u2600-\u27ff]",
            Pattern.UNICODE_CASE | Pattern.CASE_INSENSITIVE);
    Matcher emojiMatcher = emoji.matcher(source);
    if (emojiMatcher.find()) {
        source = emojiMatcher.replaceAll("*");
        return source;
    }
    return source;
}

  

posted @ 2021-07-22 20:39  苏大大的园子  阅读(64)  评论(0编辑  收藏  举报