从字符串中删除特定 Unicode 范围的字符
我有一个程序,可以从twitter流api实时解析推文。在存储它们之前,我将它们编码为utf8。某些字符最终在字符串中显示为?, ??,或???而不是它们各自的Unicode代码并导致问题。经过进一步调查,我发现有问题的字符来自“表情符号”块U + 1F600 - U + 1F64F和“杂项符号和象形文字”块U + 1F300 - U + 1F5FF。我尝试删除,但没有成功,因为匹配器最终替换了字符串中的几乎每个字符,而不仅仅是我想要的unicode范围。
String utf8tweet = "";
try {
byte[] utf8Bytes = status.getText().getBytes("UTF-8");
utf8tweet = new String(utf8Bytes, "UTF-8");
}
catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
Pattern unicodeOutliers = Pattern.compile("[\\u1f300-\\u1f64f]", Pattern.UNICODE_CASE | Pattern.CANON_EQ | Pattern.CASE_INSENSITIVE);
Matcher unicodeOutlierMatcher = unicodeOutliers.matcher(utf8tweet);
utf8tweet = unicodeOutlierMatcher.replaceAll(" ");
如何删除这些字符?