Return to Snippet

Revision: 15311
at June 30, 2009 11:15 by axelitus


Initial Code
(?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$

Initial URL
http://imar.spaanjaars.com/QuickDocId.aspx?quickdoc=297

Initial Description
Credits to Julie. Here is a regex if you want this criteria:

* 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

* Passwords will contain at least (8) characters in length

* Password maximum length is not limited

Initial Title
Strong Password RegEx

Initial Tags
regex

Initial Language
Regular Expression