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

熱點內容
硫酸亞鐵如何用於廢水處理 瀏覽:906
飲水機不往上吸水了怎麼回事 瀏覽:192
雲米凈水器400g的濾芯多少錢一套 瀏覽:787
水過濾器清除濾芯臟污 瀏覽:923
含銅廢水成分 瀏覽:648
石材廠污水沉澱物哪裡要 瀏覽:672
去理發店加工離子燙 瀏覽:368
凈水器怎麼判斷ro膜失效 瀏覽:603
智跑油箱油汽碳過濾芯 瀏覽:477
m6反滲透濾芯怎麼安裝 瀏覽:629
凈水機跟水管之間連接的是什麼 瀏覽:789
上海居民樓污水排放條例 瀏覽:351
安蓓斯空氣凈化器怎麼樣 瀏覽:283
凈水器和飲水機都有什麼 瀏覽:98
太子摩托車空氣過濾三通需要放水不 瀏覽:900
干凈水落在白色塑料上怎麼變黃了 瀏覽:582
污水處理廠外圍防護綠帶 瀏覽:313
柴油怎麼過濾凈化器 瀏覽:620
凈水器用什麼桶裝水好 瀏覽:468
空氣濾芯水洗後會產生什麼後果 瀏覽:800