String regex = "..";
String input = "abcd";
try {
Pattern p = Pattern.compile(regex);
Matcher m = p.matcher(input);
while (m.find())
System.out.println(m.group());
} catch (PatternSyntaxException pse) {
//.....
}
上面的代码仅显示“ ab”和“ cd”。为什么即使满足正则表达式也不会输出“ bc”。