RegExLib.com - The first Regular Expression Library on the Web!

Please support RegExLib Sponsors

Sponsors

Advanced Search

Keywords

Category

Minimum Rating

Results per Page

Search Results: 102 regular expressions found.

Change page:   |    Displaying page 3 of 6 pages; Items 41 to 60
Title Test Details Strong password
Expression
(?-i)(?=^.{8,}$)((?!.*\s)(?=.*[A-Z])(?=.*[a-z]))((?=(.*\d){1,})|(?=(.*\W){1,}))^.*$
Description
Password must have at least 8 characters with at least one Capital letter, at least one lower case letter and at least one number or special character.
Matches
Spring08 | spR1ng14 | ~Spring%
Non-Matches
spring | SpringSp | 12345678
Author Rating: The rating for this expression. Alex G
Title Test Details Validate very strong password
Expression
^(?=^.{8,}$)(?=.*\d)(?=.*\W+)(?=.*[a-z])(?=.*[A-Z])(?i-msnx:(?!.*pass|.*password|.*word|.*god|.*\s))(?!^.*\n).*$
Description
This regular expression can be used to validate a strong password. It will evaluate to true if the following critera are met: Must be 8 characters in length total. Must contain at least 1 digit. Must contain at least 1 lower case letter. Must contain at least 1 upper case letter. Must contain at least 1 non-character (such as !,#,%,@, etc). Must not contain the words "password" or "pass" or "word" or "god" Must not contain a whitespace. Note: This version is not compatible with JavaScript
Matches
one2!fouR, @Eight21, one22Four%, 2thRee@four, 7diPity*, 12345aB(
Non-Matches
one2three!, four2345, #viced@#$, short1@
Author Rating: The rating for this expression. Charles Forsyth
Title Test Details Patern Title
Expression
^(?=.*\d)(?=.*[a-z])([a-z0-9]{8,25})$
Description
Password matching expression. Password must be at least 8 characters,no more then 25 characters, must include at least 1 lower case letter and 1 numeric digit. Upper case, space and punctuation marks are not allowed.
Matches
aaaaaaa1|abcdefghijklmnoprqstu1234|1234567a
Non-Matches
aaaaaaA1|0123456789kB|1234567890abcde123456 A%.
Author Rating: Not yet rated. Yavuz Oztemel
Title Test Details Match a string containing at least 2 numbers and at least 6 alphabetic
Expression
(?=(.*\d.*){2,})(?=(.*[a-zA-Z].*){6,})
Description
Check password containing at least x numbers and y alphabetic. Use look back expression (?= )
Matches
abc2de2f, 2kdfd223df
Non-Matches
2abcdefgh, 9abc32de232
Author Rating: Not yet rated. Longge Ruan
Title Test Details Password 6 symbols and must containt non-captial letter and digit
Expression
^(?=.{6,})(?=.*[0-9].*)(?=.*[a-z].*).*$
Description
Password of 6 symbols. Must containt at leats one non-captial letter and at least digit digit
Matches
abc123 | ()()a1 | _ABCDa1
Non-Matches
abcdef | ab_12 | ABC123
Author Rating: The rating for this expression. Marius
Title Test Details Password Rule
Expression
^(?=.*\d)(?=.*[a-zA-Z])(?!.*\s).{6,12}$
Description
Tests that a password contains between 6 and 12 characters, and contains at least one number.
Matches
Password1, pAsSwOrD23
Non-Matches
pwd, ThisPasswordIsTooLong3423423
Author Rating: The rating for this expression. Keith Stacy
Title Test Details Regx for strong password
Expression
^.*(?=.{8,})(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(^[a-zA-Z0-9@\$=!:.#%]+$)
Description
This Expression will allow at least one small letter, one capital and one numeric digit. And length of the password is minimum of 8 and allowed special chars are pre defined(@\$=!:.#%),special chars are optional in password
Matches
Password1 | Password@1 | password#1
Non-Matches
password1 | password1~ | Pass123
Author Rating: Not yet rated. bussureddy82
Title Test Details .NET MembershipProvider strong password validation for PasswordStrengthRegularExpression
Expression
(?=^[!@#$%\^&*()_\-+=\[{\]};:<>|\./?a-zA-Z\d]{7,}$)(?=([!@#$%\^&*()_\-+=\[{\]};:<>|\./?a-zA-Z\d]*\W+){1,})[!@#$%\^&*()_\-+=\[{\]};:<>|\./?a-zA-Z\d]*$
Description
Regex to validate strong password for .NET MembershipProvider ValidatePassword. Regex checks for minimum required password length and for minimum required non-alphanumeric characters. Change value '7' according to MinRequiredPasswordLength and '1' to MinRequiredNonAlphanumericCharacters.
Matches
12345!r@r | #dfgjaydh% | aA1!@#$% | 11111#aZ
Non-Matches
12345rfg | hsjahdgs | 12345
Author Rating: Not yet rated. Bram van den Broek
Title Test Details Alphanumeric Password with Special Character Support
Expression
(?=^.{7,20}$)(?=.*\d)(?=.*[a-zA-Z])(?!.*\s)[0-9a-zA-Z*$-+?_&=!%{}/'.]*$
Description
Password length must be between 7 and 20 characters, include at least one alphabetic and one numeric character, and may include some special characters.
Matches
test1234 | test$%9* | Test$123
Non-Matches
testing | 12345678 | !@#$%^&*
Author Rating: The rating for this expression. Mike Pillittere
Title Test Details Validate password has at least 4 non-alphanumeric characters within it
Expression
^(?=.*(\W.*){4,}).*$
Description
This RegEx will validate a password that has at least 4 non-alphanumeric characters in it. The characters do not need to be adjacent.
Matches
test$#%! t#e!s%t& #$test!@ %te#@st#!
Non-Matches
test#$% %test#@ @t%e#st @test te%!st
Author Rating: The rating for this expression. Charles Forsyth
Title Test Details Strong Password
Expression
(?=^.{8,15}$)((?!.*\s)(?=.*[A-Z])(?=.*[a-z])(?=(.*\d){1,}))((?!.*[",;&|'])|(?=(.*\W){1,}))(?!.*[",;&|'])^.*$
Description
Password must have at least 8 characters and maximum of 15 characters with at least one Capital letter, at least one lower case letter and at least one number.Special character is optional. Special characters ",;&|' not allowed.
Matches
Sathish2 | Sathi$h2 | Sath1sh
Non-Matches
sathish | sathish2 | Sathish&2 | Sath|sh
Author Rating: The rating for this expression. Sathishkumar
Title Test Details Password
Expression
^(?=.*[\d])(?=.*[A-Z])(?=.*[a-z])[\w\d!@#$%_]{6,40}$
Description
Password must be 6-40 characters - {6,40} Must have no spaces, at least 1 digit (?=.*[\d]), at least 1 uppercase letter (?=.*[A-Z]) and at least one lowercase letter (?=.*[a-z]). Allows specifying special characters - !@#$%_
Matches
Pa5$Word | HORS3y | Th1$IsMyR3allYl0ngPa$$
Non-Matches
PASSWORD | password | Password | 1234567
Author Rating: The rating for this expression. Timothy Dutton
Title Test Details Simple Password
Expression
^([a-zA-Z])(?=.*\d)\w{4,9}$
Description
Check Password: 5 - 10 characters long, start with a letter and contain at least one number. No special characters
Matches
a2345 | abcd1 | abc123
Non-Matches
1abc | 1abcd | a2345678910
Author Rating: Not yet rated. Greg Gamble
Title Test Details Validate 15 - 30 Character Passwords
Expression
^(?=.*\d{2})(?=.*[A-Z]{2})(?=.*[\D,\W,\S]{2})(?=.*[a-z]).{15,30}$
Description
For matching passwords (or any words) with the following requirements... 15 - 30 Characters; At least 2 Numeric 0-9, 2 Special !,^,&... & 2 Uppercase A-Z
Matches
Pr3ee@C1tyUSi1$
Non-Matches
Blah
Author Rating: Not yet rated. Paul Bratcher
Title Test Details Strong password
Expression
^(?=(.*[a-zA-Z].*){2,})(?=.*\d.*)(?=.*\W.*)[a-zA-Z0-9\S]{8,15}$
Description
Strong passwords with min 8 - max 15 character length, at least two letters (not case sensitive), one number, one special character (all, not just defined), space is not allowed.
Matches
&test*81 | te$tPa55word | testpass(7
Non-Matches
mypassword | pass%5 | test5324 | 374833e**
Author Rating: The rating for this expression. Miljana Grasilovic
Title Test Details Strong password
Expression
^(?=.*[a-z])(?=.*[A-Z])(?=.*\d.*)(?=.*\W.*)[a-zA-Z0-9\S]{8,15}$
Description
Strong passwords with min 8 - max 15 character length, at least one uppercase letter, one lowercase letter, one number, one special character (all, not just defined), space is not allowed.
Matches
te$tPa55word | Passw0r|) | Pa$sw0rd
Non-Matches
&test*81 | testpass7* | TestPassw0rd
Author Rating: The rating for this expression. Miljana Grasilovic
Title Test Details Password Verification
Expression
^(?=.*\d)(?=.*[A-Za-z])(?!.*[!@#\$%\^&\*\(\)\+=\|;'"{}<>\.\?\-_\\/:,~`]).{6,20}$
Description
Validates passwords to be 6-20 characters of letter and numbers and NO special characters (that appear on the keyboard). Adjust numbers at the end and remove special characters (after the "(?!") as needed. Numbers appear at the END to address an IE problem with zero-width look-aheads.
Matches
abc123 | 8e9272wi8 | WEF896wdfso
Non-Matches
iD0notM@tch | n3itherDO_!
Author Rating: Not yet rated. Brad Williams
Title Test Details Password
Expression
(?!^[0-9 ]*$)(?!^[a-zA-Z ]*$)^([a-zA-Z0-9 ]{6,15})$
Description
This expression validates alphanumeric with one alphabet compulsory and one numeric compulsory and accepts minimum 6 characters and max 15 characters irrespective of the order and case.It doesnt accept special characters
Matches
1DAV100
Non-Matches
asdfgh,asd.123 etc.,
Author Rating: The rating for this expression. david paul
Title Test Details User Name and Password
Expression
^(?<username>[a-z][\w.-]*)(?::(?<pwd>[\w.-]*))$
Description
accepts: 1. user name - starting with a letter - [a-z, 0-9, _, - ]* 2. : delimiter 3. password with any characters
Matches
user:anything4654sASD:454!@#$ | user-name:anything4654sASD:454!@#$ | user.name:anything4654sASD:454!@#$
Non-Matches
user name:anything4654sASD:454!@#$ | username | user!name:anything4654sASD454
Author Rating: Not yet rated. ASM™
Title Test Details Password Validation
Expression
^(?!.*(.)\1{3})((?=.*[\d])(?=.*[A-Za-z])|(?=.*[^\w\d\s])(?=.*[A-Za-z])).{8,20}$
Description
8-20 chars; at least one alpha; at least one number or special char; up to 3 repeating chars, no more
Matches
8charact, twentychar$acters123, 1repppeats
Non-Matches
6chars, twentychar$acters123456, 1reppppeat, nonummmbers
Author Rating: The rating for this expression. Terry Palmer
Change page:   |    Displaying page 3 of 6 pages; Items 41 to 60

Copyright © 2001-2024, RegexAdvice.com | ASP.NET Tutorials