84669 personnes étudient
152542 personnes étudient
20005 personnes étudient
5487 personnes étudient
7821 personnes étudient
359900 personnes étudient
3350 personnes étudient
180660 personnes étudient
48569 personnes étudient
18603 personnes étudient
40936 personnes étudient
1549 personnes étudient
1183 personnes étudient
32909 personnes étudient
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"这样的字符串可以匹配,但直接的不行
拥有18年软件开发和IT教学经验。曾任多家上市公司技术总监、架构师、项目经理、高级软件工程师等职务。 网络人气名人讲师,...
加一句keyword=new String(keyword.getBytes("UTF-8"), "UTF-8");就可以匹配了
加一句
keyword=new String(keyword.getBytes("UTF-8"), "UTF-8");
就可以匹配了