Java 替换emoji表情

匿名 (未验证) 提交于 2019-12-02 21:45:52

mysql 什么样的字符集可以存储emoji

utf8mb4 属于utf8的超集,具有utf8的属性,也更完善 utf8只能最大存储3个字节,而emoji为四个字符,utf8mb4可以存储4个字节 

替换代码:

public static String replaceEmoji(String source) { 		if (source != null) { 			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; 		} 		return source; 	} 其中 Pattern.CASE_INSENSITIVE 为启用不区分大小写的匹配。 
在这里只描述下我知道的Java中应用正则的例子: 1、String   String.replaceAll(String regex,String source)  String.replaceFirst(String regex, String replacement)  String.split(String regex) 
文章来源: https://blog.csdn.net/qq_37177642/article/details/92662775
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!