Maruthi Krishna has Published 951 Articles

Possessive quantifiers Java Regular expressions

Maruthi Krishna

Maruthi Krishna

Updated on 10-Jan-2020 12:46:14

295 Views

Greedy quantifiers are the default quantifiers. A greedy quantifier matches as much as possible from the input string (longest match possible) if match not occurred it leaves the last character and matches again.A possessive quantifier is similar to a greedy quantifier the only difference is it tries to match as ... Read More

Java program to remove all numbers in a string except "1" and "2"?

Maruthi Krishna

Maruthi Krishna

Updated on 10-Jan-2020 12:44:08

185 Views

The regular expression "(?digit(?!\d)" matches the digit specified.The replaceAll() method accepts two strings: a regular expression pattern and, the replacement string and replaces the pattern with the specified string.Therefore, to remove all numbers in a string except 1 and 2, replace the regular expressions 1 and 2 with one and ... Read More

Character class: subtraction - Java regular expressions

Maruthi Krishna

Maruthi Krishna

Updated on 10-Jan-2020 12:38:17

343 Views

You can subtract one range from other and use it as new range. You can achieve this by using two variants of character classes i.e. negation and intersection.For example the intersection of ranges [a-l] and [^e-h] gives you the characters a to l as rage subtracting the characters [e-h]Example Live Demoimport ... Read More

Character class: intersection - Java regular expressions

Maruthi Krishna

Maruthi Krishna

Updated on 10-Jan-2020 12:35:27

222 Views

The character classes in Java regular expression is defined using the square brackets "[ ]", this subexpression matches a single character from the specified or, set of possible characters. For example the regular expression [abc] matches a single character a or, b or, c.The intersection variant of the character class ... Read More

MatchResult group() method in Java with examples.

Maruthi Krishna

Maruthi Krishna

Updated on 10-Jan-2020 12:33:40

70 Views

The java.util.regex.MatcheResult interface provides methods to retrieve the results of a match.You can get an object of this interface using the toMatchResult() method of the Matcher class. This method returns a MatchResult object which represents the match state of the current matcher.The group() method of this interface returns a string ... Read More

MatchResult end(int group) method in Java with examples.

Maruthi Krishna

Maruthi Krishna

Updated on 10-Jan-2020 12:31:43

49 Views

The java.util.regex.MatcheResult interface provides methods to retrieve the results of a match.You can get an object of this interface using the toMatchResult() method of the Matcher class. This method returns a MatchResult object which represents the match state of the current matcher.The end(int group) method of this interface accepts an ... Read More

MatchResult end() method in Java with examples.

Maruthi Krishna

Maruthi Krishna

Updated on 10-Jan-2020 12:27:29

56 Views

The java.util.regex.MatcheResult interface provides methods to retrieve the results of a match.You can get an object of this interface using the toMatchResult() method of the Matcher class. This method returns a MatchResult object which represents the match state of the current matcher.The end() method of this interface returns the offset ... Read More

Posix character classes p{Sc} Java regex

Maruthi Krishna

Maruthi Krishna

Updated on 10-Jan-2020 12:25:21

201 Views

This class matches currency symbols.Example 1 Live Demoimport java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example1 {    public static void main(String args[]) {       //Reading String from user       System.out.println("Enter a string");       Scanner sc = new Scanner(System.in);       String input = ... Read More

Posix character classes Java regex

Maruthi Krishna

Maruthi Krishna

Updated on 10-Jan-2020 12:17:55

315 Views

This class \p{IsAlphabetic} matches alphabetic characters.Example 1 Live Demoimport java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example1 {    public static void main(String args[]) {       //Reading String from user       System.out.println("Enter a string");       Scanner sc = new Scanner(System.in);       String input ... Read More

Posix character classes p{Lu} Java regex

Maruthi Krishna

Maruthi Krishna

Updated on 10-Jan-2020 12:12:39

164 Views

This class \p{Lu} matches upper case letters.Example 1 Live Demoimport java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Example1 {    public static void main(String args[]) {       //Reading String from user       System.out.println("Enter a string");       Scanner sc = new Scanner(System.in);       String ... Read More

Advertisements