Regular Expressions 101

Sponsors

Library entries

2
pcre

the many john smiths

no description available
Submitted by anonymous - 7 years ago
2
pcre

Separating Server and Domain from FQDN

no description available
Submitted by Awan - 7 years ago
2
pcre

fiddler raw to php array

no description available
Submitted by anonymous - 7 years ago
2
pcre

Course GUID

no description available
Submitted by anonymous - 7 years ago
2
pcre

get Youtube & Vimeo id

grab youtube & vimeo id
Submitted by mi-ca.ch - 7 years ago
2
pcre

find colon inside a tag

no description available
Submitted by RCVS - 7 years ago
2
pcre

url

took me way to long
Submitted by timmyRS - 7 years ago

strong password validation

Vote

3

Regular Expression
pcre

/
^ # start of line (?=(?:.*[A-Z]){2,}) # 2 upper case letters (?=(?:.*[a-z]){2,}) # 2 lower case letters (?=(?:.*\d){2,}) # 2 digits (?=(?:.*[!@#$%^&*()\-_=+{};:,<.>]){2,}) # 2 special characters (?!.*(.)\1{2}) # negative lookahead, dont allow more than 2 repeating characters ([A-Za-z0-9!@#$%^&*()\-_=+{};:,<.>]{12,20}) # length 12-20, only above char classes (disallow spaces) $ # end of line
/
gmx

Description

Loading markdown...
Submitted by anonymous - 6 years ago