導航:首頁 > 凈水問答 > 如何過濾emoji表情

如何過濾emoji表情

發布時間:2024-03-21 05:01:05

1. python 怎麼過濾 emoji 表情符號

||濾該表情
[java] view plain
public static String filterEmoji(String source) {
if (!containsEmoji(source)) {
return source;// 包含直接返
}

StringBuilder buf = null;
int len = source.length();
for (int i = 0; i < len; i++) {
char codePoint = source.charAt(i);
if (!isEmojiCharacter(codePoint)) {
if (buf == null) {
buf = new StringBuilder(source.length());
}
buf.append(codePoint);
} else {
}
}
if (buf == null) {
return "";
} else {
if (buf.length() == len) {// 意義於盡能少toString重新字元串
buf = null;
return source;
} else {
return buf.toString();
}
}
}

[java] view plain
// 判別否包含Emoji表情
private static boolean containsEmoji(String str) {
int len = str.length();
for (int i = 0; i < len; i++) {
if (isEmojiCharacter(str.charAt(i))) {
return true;
}
}
return false;
}

private static boolean isEmojiCharacter(char codePoint) {
return !((codePoint == 0x0) ||
(codePoint == 0x9) ||
(codePoint == 0xA) ||
(codePoint == 0xD) ||
((codePoint >= 0x20) && (codePoint <= 0xD7FF)) ||
((codePoint >= 0xE000) && (codePoint <= 0xFFFD)) ||
((codePoint >= 0x10000) && (codePoint <= 0x10FFFF)));
}

閱讀全文

與如何過濾emoji表情相關的資料

熱點內容
酚醛樹脂做耐火保溫磚行嗎 瀏覽:344
市政地下污水管用什麼材料 瀏覽:340
怎麼代理家用凈水器 瀏覽:245
污水膜布怎麼拉 瀏覽:931
穿越yy肉歷史 瀏覽:596
美國電影一保姆帶3個孩子 瀏覽:399
小孩愛看的體育電影 瀏覽:511
哪些凈水器使用陶氏反滲透膜 瀏覽:698
反滲透濃水調少有什麼危害 瀏覽:856
誰有手機在線觀看網址鏈接 瀏覽:484
牛寶寶電影網去哪裡了 瀏覽:197
免費片網站入口 瀏覽:354
楊野 小說 瀏覽:931
男主喜歡從嬰兒開始的小說 瀏覽:938
逍遙王爺狩獵記女穿男小說 瀏覽:614
電影 消防 瀏覽:511
一個女人吃胎兒的泰國電影 瀏覽:678
諾桑覺寺電影涉及了哪些文化 瀏覽:582
工廠直飲水機租賃多少錢 瀏覽:827
純水中加氯化鈉沸點為什麼變高 瀏覽:119