导航:首页 > 净水问答 > 如何过滤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表情相关的资料

热点内容
实验室纯水机的滤芯多少钱 浏览:221
污水坑防腐怎么处理 浏览:185
摩托车空气滤芯怎么洗五羊摩托车 浏览:746
空气滤芯的滤纸里有什么 浏览:432
污水泵电机检测 浏览:404
污水处理厂活性污泥工艺流程 浏览:237
中央净水器如何产生废水 浏览:775
医疗机构污水cod超标治理方法 浏览:858
山东学校生活污水处理设备哪里有 浏览:331
北京卖保温杯店能过滤泡茶的 浏览:22
光伏污水处理公司排名 浏览:405
污水泵怎么换泵头 浏览:681
污水处理常用设备维护 浏览:834
pvdf超滤寿命 浏览:190
做豆腐的废水能直排吗 浏览:308
树脂工艺品用多少目的填料 浏览:803
紫甘蓝水为什么加入纯净水 浏览:244
安徽线绕滤芯怎么样 浏览:688
c4l汽油滤芯和什么车通用 浏览:982
直火蒸馏法和水蒸气蒸馏法 浏览:214