Skip to content

Instantly share code, notes, and snippets.

View willGatos's full-sized avatar

William Ironmore willGatos

  • Freelancig
  • Cuba
View GitHub Profile
@arielweinberger
arielweinberger / strong-password-regex.md
Last active June 12, 2024 09:45
Strong password Regular Expression - NestJS Course
  • Passwords will contain at least 1 upper case letter
  • Passwords will contain at least 1 lower case letter
  • Passwords will contain at least 1 number or special character
  • There is no length validation (min, max) in this regex!

Regular expression for JavaScript:

/((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$/