Regular Expressions 101

Community Patterns

Password Validator

0

Regular Expression
ECMAScript (JavaScript)

/
^([a-z\!\$\#\*\d]){8,64}(?=$)
/
gmi

Description

Evaluates a string such that only letters, digits, and the special characters !, #, and $ are allowed. Length 8 - 64

Submitted by atypicaldev - 7 years ago