一、使用matches()
二、使用find()
public static void main(String[] args) {
int count = 0;
String regEx = "[\\u4e00-\\u9fa5]";
String str = "中文fdas ";
Pattern p = Pattern.compile(regEx);
Matcher m = p.matcher(str);
while (m.find()) {
count = count + 1;
System.out.println(m.groupCount());
System.out.println(m.group());
}
System.out.println("共有 " + count + "个 ");
}
结果:
0
中
0
文
共2个