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 4 of 6 pages; Items 61 to 80
Title Test Details Strong Password
Expression
^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[^a-zA-Z0-9])(?!.*\s).{8,20}$
Description
Password between 8 and 20 characters; must contain at least one lowercase letter, one uppercase letter, one numeric digit, and one special character, but cannot contain whitespace.
Matches
Abc1234# | abcD$123 | A1b2&C3!
Non-Matches
abcd1234 | AbCd!@#$ | Abc 123#
Author Rating: Not yet rated. Jay French
Title Test Details Password Strength
Expression
^((?=.{8,32}$)(?=.*\p{Lu})(?=.*\p{Ll})((?=.*\p{N})|(?=.*\p{P}))(?!.*\s))
Description
This .NET Framework expression tests a submitted password for length, a capital and lower case letter, a number or punctuation character and no spaces.<br /> (?=.{8,32}$) tests for a minimum of 8 characters and maximum of 32. (?=.*\p{Lu}) tests for at least one upper case letter anywhere in the string. (?=.*\p{Ll}) tests for at least one lower case letter anywhere in the string. ((?=.*\p{N})|(?=.*\p{P})) tests that there is at least one number OR one punctuation mark. (?!.*\s) tests that there are no spaces in the string.
Matches
Pass-Word | paSS1woRD | p4SSword
Non-Matches
PassWord | pass1RD | p4ssword
Author Rating: The rating for this expression. Jay A. Moritz
Title Test Details Strong Password Validation
Expression
^(?=.*[!@#$%^&*()\-_=+`~\[\]{}?|])(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9]).{8,20}$
Description
This should require all of the following: An uppercase letter, a lowercase letter, a number and a special character from the provided list. Lastly, it needs to be between 8 and 20 characters long. A lot of expressions I've found here don't require all four, this should. I'm pretty new at regex though, so I hope that other people will help strengthen this expression. When testing on this site, make sure you have the Case Insensitive checkbox turned off.
Matches
p2sSw@rd | p2sSw@rd#l0ngEr | abc#$%GH1
Non-Matches
p2ssw@rd | p2sSw@rd#l0ngErThisIs2l0ng | abc123DEF
Author Rating: The rating for this expression. John Pirkey
Title Test Details Find URL in text
Expression
/((https?|ftp)\:\/\/)?([a-z0-9+!*(),;?&=\$_.-]+(\:[a-z0-9+!*(),;?&=\$_.-]+)?@)?(([a-z0-9-.]*)\.([a-z]{2,6}))|(([0-9]{1,3}\.){3}[0-9]{1,3})(\:[0-9]{2,5})?(\/([a-z0-9+\$_-]\.?)+)*\/?(\?[a-z+&\$_.-][a-z0-9;:@&%=+\/\$_.-]*)?(#[a-z_.-][a-z0-9+\$_.-]*)?/i
Description
This could be most complete and readable URL-finder regex. I built it from several good examples. Works with PHP preg_match_all(). Finds whatever string that resembles a URL with scheme://, user:password, subdomains.domain (with up to 6 chars top-domain) or IP address xxx.xxx.xxx.xxx, :port, /file/path/, ?request, and #anchor
Matches
google.com
Non-Matches
file://hello.txt
Author Rating: The rating for this expression. Marco Alvarado
Title Test Details Password with n numbers of digits, upper case character and special character.
Expression
(?=^.{12,25}$)(?=(?:.*?\d){2})(?=.*[a-z])(?=(?:.*?[A-Z]){2})(?=(?:.*?[!@#$%*()_+^&}{:;?.]){2})(?!.*\s)[0-9a-zA-Z!@#$%*()_+^&]*$
Description
User can specify n numbers of digits, upper case character and special character. In this example, we will use two special characters, digits and upper case in the password. Explanation: (?=^.{12,25}$) -- password length range from 12 to 25 (?=(?:.*?[!@#$%*()_+^&}{:;?.]){2}) -- at least 2 special characters (!@#$%*()_+^&}{:;?.}) (?=(?:.*?\d){2}) -- at least 2 digits (?=.*[a-z]) -- characters a-z (?=.{2,}[A-Z]) -- at least 2 upper case characters
Matches
PassW0rd@1*3, pAsSword@#123
Non-Matches
PassW0rd@1*, PassW0rd@1*3', PassW0rd@1 3p
Author Rating: Not yet rated. Bryian Tan
Title Test Details strong password limited character set
Expression
(?=.*\d)(?=.*[a-z])(?=.*[A-Z])^[\w!@$#.+-]{8,64}$
Description
8 to 64 characters. Spaces not allowed. Require at least one UPPER, one lower and one number. Then limit the input to a-z A-Z 0-9 _-+.$ # @ and !
Matches
LongEr1 !1LongeR ++++Aa1+++
Non-Matches
sHort! all-lower allLetters
Author Rating: Not yet rated. V A R
Title Test Details Password Validator
Expression
^((\D*[a-z]\D*[A-Z]\D*)|(\D*[A-Z]\D*[a-z]\D*)|(\D*\W\D*[a-z])|(\D*\W\D*[A-Z])|(\D*[a-z]\D*\W)|(\D*[A-Z]\D*\W))$
Description
Password validation with any two of combinations: [A-Z],[a-z],Punctuation Symbols with minimum user requirement without digits.If digit is added , it wont validate.As per requirement add '.{n,m}' without quotes before the $ sign in the expression.
Matches
Sara,sA,%g,&HHJ,G(*,hgh%
Non-Matches
Sa2,hjH7,7&h
Author Rating: The rating for this expression. Saravana
Title Test Details Generic Credentials
Expression
username=(.*)&password=(.*)
Description
Matches all packets that have the string username and password
Matches
Non-Matches
iphone511
Author Rating: Not yet rated. Iphone511
Title Test Details Simple password match
Expression
^\S{1}(?:.){4,}\S$
Description
Check if a string contains at least 6 characters. Can not end or start with whitespace but can contain any other. PCRE optimized with none-capturing parentheses.
Matches
4 good p@ssW0rd? | password
Non-Matches
pass | word | 12345
Author Rating: Not yet rated. Emil
Title Test Details Valid Password
Expression
^[a-zA-Z0-9!@#$&_]+$
Description
Test the password
Matches
!@#$&123aqfASD | adAs!@12
Non-Matches
<space>!@#123ASDqwe | !@#ADF<space> | <space>!@#$12<space>3Qwss<space>
Author Rating: Not yet rated. Vinay Joshi
Title Test Details Password
Expression
^(?=.*[A-Z])(?=.*[a-z])(?=.*[\d])(?=.*[-\]\\`~!@#$%^&*()_=+}{[|'";:><,.?/ ]).{8,50}$
Description
Min 8 Max 50 chars /r/n Min 1 upper Min 1 number Min 1 special char from the list (there is a space at the end of the list. basically every special char from a US keyboard layout) Be careful when copy and paste from here. The entities will probably get converted.
Matches
Sco0ter~Wheels ~as$wO0Ed1
Non-Matches
Sco0terWheels PassW0rd
Author Rating: Not yet rated. Derek
Title Test Details Strong password
Expression
((?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[\W_]).{6,50})
Description
Password requires at least 1 lower case character, 1 upper case character, 1 number, 1 special character and must be at least 6 characters and at most 50
Matches
Abcde1! | Abcde1$ | ABCDe1!
Non-Matches
abcde1! | ABCDE1! | abcdef
Author Rating: The rating for this expression. Jonathan Baggaley
Title Test Details Strong Password
Expression
^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*\W)(?!.*\s).{8,}$
Description
Password expresion that requires one lower case letter, one upper case letter, one digit, one non-word character, 8>= length and no spaces.
Matches
aA@1aaaa | aA@1aaaaasfljs;lkfe
Non-Matches
aA@1a aaa | aA1aaaaaaaa | 12345678
Author Rating: The rating for this expression. Ankhaa
Title Test Details Password
Expression
(?!^[0-9]*$)(?!^[a-zA-Z]*$)^([a-zA-Z0-9]{6,8})$
Description
It Required Input of a combination of Numbers & Strings also length must be greater than 6...
Matches
123456s | abc123 | 123abc
Non-Matches
1234567 | +_()'675 | abcdefgh
Author Rating: Not yet rated. Mustafa Iqbal
Title Test Details Password regex
Expression
^(?=.*\d)\w+$
Description
Any alphabets are allowed.Passsword must contain atleast 1 digit and none of the characters are allowed.
Matches
password1
Non-Matches
password1@
Author Rating: Not yet rated. Swetha
Title Test Details Mundivox pass e login
Expression
actionID=&url=&load_frameset=1&autologin=0&anchor_string=&server_key=imap&imapuser=(.*)&pass=(.*)&new_lang=pt_BR&select_view=imp
Description
Gives webmail website acount, login and password. Do not work for mobile browsers.
Matches
Mail|loging|pass|worksinanypcormac
Non-Matches
Mobile|dosent|work
Author Rating: Not yet rated. Tristriaauf
Title Test Details Split URL authority
Expression
^(?!.*\n.*)(?:([^:]*)(?::(.*?))?@)?([^:]*)(?::([^:]*?))?$
Description
For the purposes of this regex, the authority/domain of a URL comes after the scheme + "//", and includes an optional username, password, and port. This is a perl-compatible regex (PCRE) that captures the various parts of the a domain, including the (optional) username, (optional) password, host, and (optional) port. The capturing groups are as follows: 1 = username, 2 = password, 3 = host, 4 = post. See the source link for the logic behind parsing the domain. NOTE: This is NOT intended to parse entire URLs, you will need a separate regular expression to extract the domain. Technically, only strings with newline characters are non-matches. The rest yield empty capturing groups. ANOTHER NOTE: This does NOT verify that only ascii characters are used in domain names. It is intended to extract pieces from domains that should already be valid.
Matches
[email protected]:80 | user:[email protected]:8080 | site.com:8080 | site.com | 192.168.1.1:443 | usern@[email protected] | usern@me:[email protected]
Non-Matches
\n | : | @
Author Rating: Not yet rated. Tyler Durkota
Title Test Details Password
Expression
^([\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[0-9]+[a-z]+[A-Z]+|[0-9]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[a-z]+[A-Z]+|[0-9]+[a-z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[A-Z]+|[0-9]+[a-z]+[A-Z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+|[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[0-9]+[A-Z]+[a-z]+|[0-9]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[A-Z]+[a-z]+|[0-9]+[A-Z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[a-z]+|[0-9]+[A-Z]+[a-z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+|[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[a-z]+[0-9]+[A-Z]+|[a-z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[0-9]+[A-Z]+|[a-z]+[0-9]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[A-Z]+|[a-z]+[0-9]+[A-Z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+|[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[a-z]+[A-Z]+[0-9]+|[a-z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[A-Z]+[0-9]+|[a-z]+[A-Z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[0-9]+|[a-z]+[A-Z]+[0-9]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+|[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[A-Z]+[0-9]+[a-z]+|[A-Z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[0-9]+[a-z]+|[A-Z]+[0-9]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[a-z]+|[A-Z]+[0-9]+[a-z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+|[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[A-Z]+[a-z]+[0-9]+|[A-Z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[a-z]+[0-9]+|[A-Z]+[a-z]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+[0-9]+|[A-Z]+[a-z]+[0-9]+[\$@!%\*\?&`~\^\\(\)\[\]\{\}<>,\._#-]+)+$
Description
Password with lower, upper case letters, digits and special characters in any order
Matches
#3aZ | 3#aZ | 3a#Z | 3aZ# | #3Za | 3#Za | 3Z#a | 3Za# | #a3Z | a#3Z | a3#Z | a3Z# | #aZ3 | a#Z3 | aZ#3 | aZ3# | #Z3a | Z#3a | Z3#a | Z3a# | #Za3 | Z#a3 | Za#3 | Za3#
Non-Matches
#$@! | aB3a | zzzz | BBBB | 1234
Author Rating: Not yet rated. Ahmed Magdy
Title Test Details Password schoolsites
Expression
[a-z]{2}[0-9]{5}[a-z]
Description
Very usefull on pirni: when connected with school's wifi this regex will find evry password of electronic register (es spaggiari classe viva portaleargo) divertitevi!
Matches
ab12345c
Non-Matches
aCF34568&
Author Rating: Not yet rated. Nick
Title Test Details Strongest Password according to me
Expression
^(?=.*[0-9])(?=.*[a-zA-Z])(\w|[~!$&+,:;=?\[\]@#_|<>{}()^%*\.\-\+]){5,15}
Description
This Regex accepts AlphaNumeric and specialcharacters. It contain atleast one character, one alphabet. It may or maynot contain special character(Almost covered may special characters in this).
Matches
Asdf!1234, 123@asdf, @A!@#$1
Non-Matches
Asdfqwer!, 123456, 1234a
Author Rating: Not yet rated. Vamsi
Change page:   |    Displaying page 4 of 6 pages; Items 61 to 80

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