Given a password, the task is to validate the password with the help of Regular Expression. A password is considered valid if all the following constraints are satisfied:
- It contains at least 8 characters and at most 20 characters.
- It contains at least one digit.
- It contains at least one upper case alphabet.
- It contains at least one lower case alphabet.
- It contains at least one special character which includes !@#$%&*()-+=^.
- It doesn’t contain any white space.
Examples:
Input: Str = “Geeks@portal20” Output: True. Explanation: This password satisfies all constraints mentioned above. Input: Str = “Geeksforgeeks” Output: False. Explanation: It contains upper case and lower case alphabet but doesn’t contains any digits, and special characters. Input: Str = “Geeks@ portal9” Output: False. Explanation: It contains upper case alphabet, lower case alphabet, special characters, digits along with white space which is not valid. Input: Str = “12345” Output: False. Explanation: It contains only digits but doesn’t contains upper case alphabet, lower case alphabet, special characters, and 8 characters.
Approach: This problem can be solved by using Regular Expression.
- Get the password.
- Create a regular expression to check the password is valid or not as mentioned below:
regex = “^(?=.*[0-9])(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%^&-+=()])(?=\\S+$).{8, 20}$”
- where:
- ^ represents starting character of the string.
- (?=.*[0-9]) represents a digit must occur at least once.
- (?=.*[a-z]) represents a lower case alphabet must occur at least once.
- (?=.*[A-Z]) represents an upper case alphabet that must occur at least once.
- (?=.*[@#$%^&-+=()] represents a special character that must occur at least once.
- (?=\\S+$) white spaces don’t allowed in the entire string.
- .{8, 20} represents at least 8 characters and at most 20 characters.
- $ represents the end of the string.
- Match the given string with the Regex. In java, this can be done using Pattern.matcher().
- Return true if the string matches with the given regex, else return false.
Below is the implementation of the above approach:
Java
import java.util.regex.*;
class GFG {
public static boolean
isValidPassword(String password)
{
String regex = "^(?=.*[ 0 - 9 ])"
+ "(?=.*[a-z])(?=.*[A-Z])"
+ "(?=.*[@#$%^&+=])"
+ "(?=\\S+$).{ 8 , 20 }$";
Pattern p = Pattern.compile(regex);
if (password == null ) {
return false ;
}
Matcher m = p.matcher(password);
return m.matches();
}
public static void main(String args[])
{
String str1 = "Geeks @portal20 ";
System.out.println(isValidPassword(str1));
String str2 = "Geeksforgeeks";
System.out.println(isValidPassword(str2));
String str3 = "Geeks@ portal9";
System.out.println(isValidPassword(str3));
String str4 = " 1234 ";
System.out.println(isValidPassword(str4));
String str5 = "Gfg @20 ";
System.out.println(isValidPassword(str5));
String str6 = "geeks @portal20 ";
System.out.println(isValidPassword(str6));
}
}
|
Output:
true
false
false
false
false
false
Time complexity : O(n) where n is the length of the password string. This is because the program uses the matcher() method which performs a linear search through the input string to find a match with the regular expression.
Space complexity : O(1) as the program only uses a constant amount of additional memory to store the regular expression and the Matcher and Pattern objects.
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
31 Jan, 2023
Like Article
Save Article