我知道这已被问到但我无法修复它
对于身体(西班牙语)的书籍对象:( "quiero mas dinero"实际上相当长一点)
我Matcher一直回来0:
String s="mas"; // this is for testing, comes from a List<String>
int hit=0;
Pattern p=Pattern.compile(s,Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher(mybooks.get(i).getBody());
m.find();
System.out.println(s+" "+m.groupCount()+" " +mybooks.get(i).getBody());
hit+=m.groupCount();
Run Code Online (Sandbox Code Playgroud)
我一直"mas 0 quiero mas dinero"在控制台上.为什么哦为什么?