Skip to content

Instantly share code, notes, and snippets.

@caorong
Created August 14, 2014 10:40
Show Gist options
  • Save caorong/f3261a7f0012819259e6 to your computer and use it in GitHub Desktop.
Save caorong/f3261a7f0012819259e6 to your computer and use it in GitHub Desktop.
过滤 emoji
public String getFormatTitle(String str) {
Pattern emoji = Pattern.compile("[\ud83c\udc00-\ud83c\udfff]|[\ud83d\udc00-\ud83d\udfff]|[\u2600-\u27ff]",
Pattern.UNICODE_CASE | Pattern.CASE_INSENSITIVE);
Matcher emojiMatcher = emoji.matcher(str);
return emojiMatcher.replaceAll("");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment