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

熱點內容
塑料整理箱養魚過濾 瀏覽:139
30噸污水處理設備價格表 瀏覽:574
污水提升器能解決脫水堵塞嗎 瀏覽:553
40個污水泵維護要多少錢 瀏覽:88
卡羅拉濾芯怎麼召回 瀏覽:336
福特野馬空調濾芯裝在哪裡 瀏覽:520
小廚寶放廢水 瀏覽:400
軟水過濾後再用反滲透怎麼樣 瀏覽:145
新陽樹脂活化 瀏覽:439
科林貝思反滲透凈水器怎麼安裝 瀏覽:462
反滲透塞密度指數的測定方法 瀏覽:983
污水處理項目合作意向書 瀏覽:484
讓我們死時樹脂的英文 瀏覽:275
環氧樹脂滴膠標本 瀏覽:531
ro膜不能接自來水嗎 瀏覽:902
小米2空氣凈化器怎麼鏈接手機 瀏覽:117
污水處理站脫氨是什麼 瀏覽:299
電瓶電解質污水處理 瀏覽:603
飲水機自帶熱水壺怎麼取下來 瀏覽:467
提純二硫化碳的蒸餾溫度 瀏覽:868