What will the following code output?
String text = "Java is fun";
Pattern pattern = Pattern.compile("\\bis\\b");
Matcher matcher = pattern.matcher(text);
System.out.println(matcher.find());
What will the following code output?
String text = "Java is fun";
Pattern pattern = Pattern.compile("\\bis\\b");
Matcher matcher = pattern.matcher(text);
System.out.println(matcher.find());