Example Run Enter the code pattern AbCd1234abcXX0 Yes, AbCd1234abcXX0 matches the pattern
Java
1. Write a Java program that prompts the user to enter a security code that matches a specific pattern. Your program must approve the user's entry.. Here is the pattern:
An upper case character, a lower case character, an upper case character, a lower case character,4 digits, 2 or 3 lower case letters, 2 upper case characters, 1 digit.
Example Run
Enter the code pattern
AbCd1234abcXX0
Yes, AbCd1234abcXX0 matches the pattern
a Java program that prompts the user to enter a security code that matches a specific pattern. Your program must approve the user's entry.. Here is the pattern:
An upper case character, a lower case character, an upper case character, a lower case character,4 digits, 2 or 3 lower case letters, 2 upper case characters, 1 digit.
Step by step
Solved in 2 steps