Pointing last index of the Matcher
This Example describes the way to point the matcher and also indicate the last index of the matcher using expression.For this we are going to make program named Matcher_end.java. The steps involved in program Matcher_end.java are described below:-
String text = "My name is Tim.In October Tim will arrive.":- Declaring text as String in which last index of word Tim is to be pointed out.
Pattern p=Pattern.compile("Tim"):- Creating a pattern object and compiles the given regular expression into a pattern.
Matcher m=p.matcher(text):- Creates a matcher for matching the given input against pattern p.
programname.java
import java.util.regex.Matcher;
|
Output of the program:-
My name is Tim.In October Tim will arrive. ^14 My name is Tim.In October Tim will arrive. ^29 |