導航:首頁 > 凈水問答 > 如何過濾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表情相關的資料

熱點內容
哥窯的凈水瓶尺寸是多少 瀏覽:962
納濾凈水器那個品牌質量好 瀏覽:461
強陽離子樹脂的特性 瀏覽:766
空氣凈化器自動設置怎麼設置 瀏覽:1
帶鎖的飲水機怎麼用 瀏覽:127
丙烯酸樹脂生產異常現象 瀏覽:991
什麼時候更換益之源凈水器濾芯 瀏覽:335
凈水囂濾芯是做什麼的 瀏覽:999
edi辦理咨詢 瀏覽:757
2015年污水處理廠名單 瀏覽:747
廢水中氟怎麼測量 瀏覽:496
聚合氯化鋁是如何處理含磷廢水的 瀏覽:580
城鎮一體化污水處理設 瀏覽:407
污水乳製品的cod是多少 瀏覽:811
離子交換層析的特點 瀏覽:299
南京污水提升泵廠家 瀏覽:574
去除大腸桿菌超濾設備 瀏覽:682
超純水泵怎麼使用 瀏覽:763
雨水回用噴灌 瀏覽:690
安陽污水治理工程多少錢 瀏覽:181