Pointing and indicating matcher using regular expression
This Example describes the way to point the matcher and also indicate the index of the matcher using regular expression. For this we are going to make program named Indicating_Matcher.java. The steps involved in program Indicating_Matcher.java are described below:-
String text = "My name is Tim.In October Tim will arrive.":- Declaring text as String in which first 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.
String matcher[]={" ^"," ^"}:- Creates an array name matcher.
Matcher m=p.matcher(text):- Creates a matcher for matching the given input against pattern p.
m.find():- This is the method of matcher class which is used for finding the next subsequence of the input sequence and it usually returns a boolean value.
Indicating_Matcher.java
|
Output of the program:-
My name is Tim.In October Tim will arrive. ^11 My name is Tim.In October Tim will arrive. ^26 |