Horje
regex pattern for strong password Code Example
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  
$
regex password
^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})
regex pattern for strong password
(?=^.{8,}$)(?=.*\d)(?=.*[!@#$%^&*]+)(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$




Javascript

Related
JavaScript create UUID Code Example JavaScript create UUID Code Example
react native disable the text input Code Example react native disable the text input Code Example
device width js Code Example device width js Code Example
uuid javascript Code Example uuid javascript Code Example
how to keep scrolling with javascript Code Example how to keep scrolling with javascript Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8