//字符串匹配,这是不符合的  p = Pattern.compile("a*b");  m = p.matcher("baaaaab");  b = m.matches();
为什么不符合的?