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

熱點內容
豐源飲水機熱水口出水是什麼原因 瀏覽:309
小佩飲水機濾芯如何復位 瀏覽:314
純水機為什麼要加濃縮水 瀏覽:529
互邦除垢劑 瀏覽:496
青白江中科污水處理 瀏覽:45
機車的機油濾芯在哪裡 瀏覽:359
污水處理油污 瀏覽:785
本田繽智4s店換汽油濾芯多少錢 瀏覽:256
如何正確選用水處理葯劑 瀏覽:268
醫院污水處理在線監測報價 瀏覽:760
小米1代空氣凈化器怎麼手動調速 瀏覽:167
直接排放污水需達到的標准 瀏覽:281
三聚氰胺甲醛樹脂氨基反應 瀏覽:567
污水處理廠怎麼配葯 瀏覽:819
污水處理a2o一體化工藝 瀏覽:120
造紙廢水厭氧處理工藝 瀏覽:893
什麼樣的水燒開無水垢 瀏覽:568
污水處理廠用的什麼閥門 瀏覽:877
污水處理經營管理合同 瀏覽:872
志高下置式飲水機質量怎麼樣 瀏覽:684