Matcher lookingAt() Method in Java with Examples

Maruthi Krishna
Updated on 20-Nov-2019 07:20:14

157 Views

The java.util.regex.Matcher class represents an engine that performs various match operations. There is no constructor for this class, you can create/obtain an object of this class using the matches() method of the class java.util.regex.Pattern.The lookingAt() method of the Matcher class matches the given input text with the pattern, starting from the beginning of the region. In case of a match, this method returns true, else, false. Unlike the matches() method this method doesn’t require a match in the entire region to return true.Example 1import java.util.regex.Matcher; import java.util.regex.Pattern; public class Test {    public static void main(String[] args) {     ... Read More

Matcher toMatchResult Method in Java with Examples

Maruthi Krishna
Updated on 20-Nov-2019 07:17:12

305 Views

The java.util.regex.Matcher class represents an engine that performs various match operations. There is no constructor for this class, you can create/obtain an object of this class using the matches() method of the class java.util.regex.Pattern.The toMatchResult() method of this (Matcher) returns the match state of the current matcher.Example 1import java.util.regex.Matcher; import java.util.regex.Pattern; public class ToMatchResultExample {    public static void main(String[] args) {       String str = "This is an example.";       //Regular expression to match contents of the bold tags       String regex = "(\S+)";       //Creating a pattern object     ... Read More

Matcher regionEnd() Method in Java with Examples

Maruthi Krishna
Updated on 20-Nov-2019 07:10:54

163 Views

The java.util.regex.Matcher class represents an engine that performs various match operations. There is no constructor for this class, you can create/obtain an object of this class using the matches() method of the class java.util.regex.Pattern.The regionEnd() method of this (Matcher) class returns an integer value representing the end index of the current matcher object.Example 1import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegionEndExample {    public static void main(String[] args) {       String regex = "(.*)(\d+)(.*)";       String input = "This is a sample Text, 1234, with numbers in between.";       //Creating a pattern object     ... Read More

Matcher region() Method in Java with Examples

Maruthi Krishna
Updated on 20-Nov-2019 07:07:01

206 Views

The java.util.regex.Matcher class represents an engine that performs various match operations. There is no constructor for this class, you can create/obtain an object of this class using the matches() method of the class java.util.regex.Pattern.The region() method of this (Matcher) class accepts two integer values representing positions in the input string and, sets a region of the current matcher.Example 1import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class RegionExample {    public static void main(String[] args) {       //Regular expression to accepts 6 to 10 characters       String regex = "\A(?=\w{6, 10}\z)";       System.out.println("Enter 5 to ... Read More

Difference Between matches() and find() in Java Regex

Maruthi Krishna
Updated on 20-Nov-2019 07:04:45

690 Views

The java.util.regex.Matcher class represents an engine that performs various match operations. There is no constructor for this class, you can create/obtain an object of this class using the matches() method of the class java.util.regex.Pattern.Both matches() and find() methods of the Matcher class tries to find the match according to the regular expression in the input string. In case of a match, both returns true and if a match is not found both methods return false.The main difference is that the matches() method try to match the entire region of the given input i.e. if you are trying to search for ... Read More

Matcher appendReplacement Method in Java with Examples

Maruthi Krishna
Updated on 20-Nov-2019 07:01:17

725 Views

The java.util.regex.Matcher class represents an engine that performs various match operations. There is no constructor for this class, you can create/obtain an object of this class using the matches() method of the class java.util.regex.Pattern.The appendReplacement() method of this (Matcher) class accepts a StringBuffer object and a String (replacement string) as parameters and, appends the input data to the StringBuffer object, replacing the matched content with the replacement string.Internally, this method reads each character from the input string and appends the String buffer, whenever a match occurs it appends the replacement string instead of matched content part of the string to ... Read More

Matcher groupCount Method in Java with Examples

Maruthi Krishna
Updated on 20-Nov-2019 06:49:37

572 Views

The java.util.regex.Matcher class represents an engine that performs various match operations. There is no constructor for this class, you can create/obtain an object of this class using the matches() method of the class java.util.regex.Pattern.The groupCount() method of this (Matcher) class calculates the number of capturing groups in the current match.Example 1import java.util.regex.Matcher; import java.util.regex.Pattern; public class GroupTest {    public static void main(String[] args) {       String regex = "(.*)(\d+)(.*)";       String input = "This is a sample Text, 1234, with numbers in between.";       //Creating a pattern object       Pattern pattern ... Read More

Matcher appendTail Method in Java with Examples

Maruthi Krishna
Updated on 20-Nov-2019 06:44:39

350 Views

The java.util.regex.Matcher class represents an engine that performs various match operations. There is no constructor for this class, you can create/obtain an object of this class using the matches() method of the class java.util.regex.Pattern.The appendTail() method of this (Matcher) class accepts a StringBuffer object and append the characters of the input sequence to it.Exampleimport java.util.regex.Matcher; import java.util.regex.Pattern; public class AppendTail {    public static void main(String[] args) {       String str = "This is an example HTML script.";       //Regular expression to match contents of the bold tags       String regex = "(\S+)";   ... Read More

Matcher toString() Method in Java with Examples

Maruthi Krishna
Updated on 20-Nov-2019 06:39:44

271 Views

The java.util.regex.Matcher class represents an engine that performs various match operations. There is no constructor for this class, you can create/obtain an object of this class using the matches() method of the class java.util.regex.Pattern.The toString() method of the Matcher class returns a string value representing the contents of the current matcher object.Example 1import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class ToStringExample {    public static void main(String[] args) {       Scanner sc = new Scanner(System.in);       System.out.println("Enter input text: ");       String input = sc.nextLine();       String regex = "[#%&*]";     ... Read More

Matcher reset() Method in Java with Examples

Maruthi Krishna
Updated on 20-Nov-2019 06:37:41

666 Views

The java.util.regex.Matcher class represents an engine that performs various match operations. There is no constructor for this class, you can create/obtain an object of this class using the matches() method of the class java.util.regex.Pattern.The reset() method of this (Matcher) class removes all the state information and resets the character sequence to default, and append position to zero.Example1import java.util.regex.Matcher; import java.util.regex.Pattern; public class Reset {    public static void main(String[] args) {       String str = "This is an exampleHTML script where every alternative word is bold.";       //Regular expression to match contents of the bold tags ... Read More

Advertisements