July 2017
Intermediate to advanced
158 pages
3h 41m
English
The lookingAt()method attempts to match the input against the pattern, starting from the beginning of the input but without requiring that the entire region be matched against the pattern. The following code demonstrates it:
package example.regex; import java.util.regex.*; class MatcherLookingatExample { public static void main (String[] args) { final Pattern pattern1 = Pattern.compile("master[a-z]*"); final Pattern pattern2 = Pattern.compile("master"); final Pattern pattern3 = Pattern.compile("regular"); String input = "mastering regular expressions"; Matcher matcher = pattern1.matcher(input); System.out.printf("[%s] => [%s]: %s%n", input, matcher.pattern(), matcher.lookingAt()); // update the matcher's ...Read now
Unlock full access