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