w3resource

Java: Match a string that contains only upper and lowercase letters, numbers, and underscores

Java Regular Expression: Exercise-8 with Solution

Write a Java program to match a string containing only upper and lowercase letters, numbers, and underscores.

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("The quick brown fox jumps over the lazy dog."));
	    System.out.println(validate("Java_Exercises_1"));
	    System.out.println(validate("Java_Exercises_11.0"));
	    System.out.println(validate("w3r"));
        }

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

Sample Output:

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

Pictorial Presentation:

Java Regular Expression: Match a string that contains only upper and lowercase letters, numbers, and underscores.
Java Regular Expression: Match a string that contains only upper and lowercase letters, numbers, and underscores.

Flowchart :

Flowchart: Match a string that contains only upper and lowercase letters, numbers, and underscores.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Match a word containing 'g', not at the start or end of the word.
Next: Check a string starts with a specific number or not.

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.