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

熱點內容
智能馬桶前置過濾水 瀏覽:526
肉類加工廢水的水質特徵 瀏覽:119
哈弗h6怎麼清洗空調濾芯 瀏覽:275
城市人口與日均污水量 瀏覽:689
兒童迷你飲水機壞了怎麼修 瀏覽:544
農村污水分散式 瀏覽:47
家用空調濾芯是在哪裡 瀏覽:566
工業ro膜殼接法 瀏覽:546
樹脂瓦單片規格 瀏覽:409
反滲透膜美國品牌 瀏覽:878
vss在污水處理證代表什麼 瀏覽:668
化工污水處理合同 瀏覽:672
蒸箱除垢劑 瀏覽:203
大同太原污水處理設備多少錢 瀏覽:609
污水處理站高程布置圖 瀏覽:500
膿水反滲透了怎麼辦 瀏覽:629
工業高氯廢水去除 瀏覽:865
污水在線監測 瀏覽:917
反滲透實驗室小型裝置 瀏覽:487
廢水中的苯醌如何去除 瀏覽:615