我对以下示例有疑问:
import java.util.regex.*;
class Regex2 {
public static void main(String[] args) {
Pattern p = Pattern.compile(args[0]);
Matcher m = p.matcher(args[1]);
boolean b = false;
while(b = m.find()) {
System.out.print(m.start() + m.group());
}
}
}
和命令行:
java Regex2 "\d*" ab34ef
有人可以向我解释一下,为什么结果是:01234456
正则表达式模式是 d* - 它表示第一个或多个,但在 args[1] 中有更多位置,
谢谢