w3resource

Java: Check for a number at the end of a string

Java Regular Expression: Exercise-11 with Solution

Write a Java program to check for a number at the end of a string.

Sample Solution:

Java Code:

import java.util.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class test {
 
   public static void main(String[] args) {
	   
	    System.out.println(validate("abcdef"));
		System.out.println(validate("3abcdef"));
        System.out.println(validate("abcdef9"));
		System.out.println(validate("abcdef3459"));
        }

   public static String validate(String text) {
	    Pattern pattern = Pattern.compile(".*[0-9]$");
		Matcher m = pattern.matcher(text);
		
	    if (m.find())
            return "Found a match!";
        else
            return "Not matched!";
   }
}

Sample Output:

Not matched!
Not matched!
Found a match!
Found a match!

Pictorial Presentation:

Java Regular Expression: Check for a number at the end of a string.

Flowchart :

Flowchart: Check for a number at the end of a string.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Remove leading zeros from a given IP address.

Next: Replace Python with Java and code with coding in a given string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.