Answers for "passwords regex"

14

RegExp validation for password explained

r'^
  (?=.*[A-Z])       // should contain at least one upper case
  (?=.*[a-z])       // should contain at least one lower case
  (?=.*?[0-9])      // should contain at least one digit
  (?=.*?[!@#$&*~]) // should contain at least one Special character
  .{8,}             // Must be at least 8 characters in length  
$
Posted by: Guest on April-26-2021
0

Password RegExp

"^(?=.*[a-z])(?=.*[A-Z])(?=.*d)[a-zA-Zd]{8,}$"
Posted by: Guest on March-16-2021
0

regex password

r'^
  (?=.*[A-Z])       // should contain at least one upper case
  (?=.*[a-z])       // should contain at least one lower case
  (?=.*?[0-9])      // should contain at least one digit
  (?=.*?[!@#$&*~]) // should contain at least one Special character
  .{8,}             // Must be at least 8 characters in length  
$
Posted by: Guest on January-20-2022

Browse Popular Code Answers by Language