日期:2014-05-20 浏览次数:21019 次
String s = "this is a test testabcd program."; Pattern p = Pattern.compile("test\\b"); //Pattern p = Pattern.compile("test"); //看看没有\\b结果是什么 Matcher m = p.matcher(s); while (m.find()) { System.out.println(m.group()); } ------解决方案--------------------