Answers for "how to validate password uisng a regular expression javascript"

2

regex javascript password

var strongRegex = new RegExp("^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#$%^&*])(?=.{8,})");

RegEx	Description
^	The password string will start this way
(?=.*[a-z])	The string must contain at least 1 lowercase alphabetical character
(?=.*[A-Z])	The string must contain at least 1 uppercase alphabetical character
(?=.*[0-9])	The string must contain at least 1 numeric character
(?=.*[!@#$%^&*])	The string must contain at least one special character, but we are escaping reserved RegEx characters to avoid conflict
(?=.{8,})	The string must be eight characters or longer

by- Nic Raboy
Posted by: Guest on May-02-2021
0

validate password in nodejs

// joi-password-complexity is build over joi
npm i joi-password-complexity
const passwordComplexity = require("joi-password-complexity");
const complexityOptions = {min: ,max: ,lowercase: ,
                           uppercase: , numeric: ,symbol: , requirementCount: };
-> passwordComplexity().validate("<your_password>");
or
-> passwordComplexity(complexityOptions).validate("<your_password>");
Posted by: Guest on October-02-2020

Code answers related to "how to validate password uisng a regular expression javascript"

Browse Popular Code Answers by Language