Regular Expressions 101

Community Patterns

2

UUID 4

PCRE2 (PHP >=7.3)
Detects any UUID 4 strings
Submitted by ShadowNox - 2 years ago

StrongPassword: 1 uppercase, 1 lower case, 1 num, 1 \W, & at least 8 char

1

Regular Expression
PCRE2 (PHP >=7.3)

/
^(?=.+[0-9])(?=.+[a-z])(?=.+[A-Z])(?=.+\W).{8,}$
/
gm

Description

Loading markdown...
Submitted by Bri Baldwin - 3 years ago