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

熱點內容
pp棉濾芯和超濾膜哪個好 瀏覽:667
惠而浦空氣凈化器怎麼自動感應 瀏覽:713
什麼凈水器最小 瀏覽:559
污水處理工藝流程選擇依據是 瀏覽:862
100元的反滲透ro膜 瀏覽:986
凈之泉空氣凈化器怎麼用 瀏覽:972
純水設備怎麼巴氏消毒 瀏覽:891
自己洗車污水用什麼收集 瀏覽:395
自來水處理b劑是什麼意思 瀏覽:819
自吸凈水器不停機是什麼原因 瀏覽:342
如何提升伺服器運行速度 瀏覽:744
奧斯卡飲水機怎麼樣 瀏覽:315
固化樹脂補牙的優點和缺點 瀏覽:846
樹脂切割片105 瀏覽:585
實驗室蒸發過濾裝置圖 瀏覽:976
凈水器儲水桶壓力怎麼調 瀏覽:372
濾水器過濾速度 瀏覽:982
香煙電子過濾器 瀏覽:858
納濾對硫酸鈉的脫除率 瀏覽:695
凈水器安裝前需要什麼 瀏覽:351