Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
Created·2022-06-17 06:38
Updated·2022-06-17 06:59
Flavor·ECMAScript (JavaScript)

/
^([\W\w])([^\s]){8,16}$
/
Open regex in editor

Description

verify that a password string is from length 8 - 16, while allowing word and non-word characters.

Submitted by anonymous