Heim  >  Fragen und Antworten  >  Hauptteil

正则匹配微信emoji失败

Pattern p = Pattern.compile("[\ud83c\udc00-\ud83c\udfff]|[\ud83d\udc00-\ud83d\udfff]|[\u2600-\u27ff]",Pattern.UNICODE_CASE|Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher(keyword);
m.find();

匹配不到

如果是"\ud83c\udc00"这样的字符串可以匹配,但直接的不行


高洛峰高洛峰2922 Tage vor776

Antworte allen(1)Ich werde antworten

  • 三叔

    三叔2016-11-10 11:11:05

    加一句
    keyword=new String(keyword.getBytes("UTF-8"), "UTF-8");
    就可以匹配了

    Antwort
    0
  • StornierenAntwort