Question
For this assignment, please write a program in the language of your choice identifying the libraries offered by the language for regex functions. The program
For this assignment, please write a program in the language of your choice identifying the libraries offered by the language for regex functions. The program should take String as input and return true/false based on the below criterion.
Return True if the String satisfies the following conditions:
1. It has at least one lowercase English character.
2. It has at least one uppercase English character.
3. It has at least one special character. Valid special characters: !@#$%^&*()-+
4. Its length is at least 8 and a maximum of 30.
5. It contains at least
1 digit. Example: Input: AdvSoftware$@23 Output: True Input: Adv23 Output: False
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started