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

熱點內容
白水回用多盤 瀏覽:102
諸城食品廠污水處理設備多少錢 瀏覽:965
污水處理工藝流程及各項內容的作用 瀏覽:800
青蛙飲水機怎麼畫 瀏覽:43
益陽污水招標 瀏覽:750
純水耗氧量濃度大概多少 瀏覽:149
陶氏ro膜適用什麼機型 瀏覽:67
滌塵能清除水垢嗎 瀏覽:324
生化法處理高鹽分廢水文獻 瀏覽:140
生活污水ss中有多少cod 瀏覽:566
污水水力半徑濕周 瀏覽:182
凈水器沖水卡多少錢一個 瀏覽:497
污水廠水泵揚程多少米 瀏覽:443
氯化銨廢水用離子交換 瀏覽:264
怎麼自製pvc魚缸過濾桶 瀏覽:981
飲水機水裝上漏水是怎麼回事 瀏覽:745
飲水機涼水開關出水太小怎麼回事 瀏覽:563
美的凈水器ro膜是什麼 瀏覽:108
超濾設備出來的水是鹹的什麼原因 瀏覽:77
土壤陽離子交換量的大小表明 瀏覽:436