Find a regular expression

JavaScript regular expression
requires that all characters can be entered, but must contain letters (case-insensitive) and numbers, and the total length is not less than 8 digits

.
Mar.05,2021

write


View the matching result

the rules are as follows:

^(?=.*[a-zA-Z])(?=.*\d).{8,}$

^ (?! [0-9] + $) (?! [a-zA-Z] + $) [0-9A-Za-z] {8,} $

Menu