What will the following code output?
String text = "Java8"; System.out.println(text.matches("Java(?=\\d)"));
Null
false
true
Error