Please enable JavaScript to use this web application.
Regular
Expressions
101
Social
Donate
Info
Regex Editor
Community Patterns
Account
Regex Quiz
Settings
Order By
Most Recent
Most upvotes
Most downvotes
Highest Score
Lowest Score
Filter by Flavor
PCRE2 (PHP >=7.3)
PCRE (PHP <7.3)
ECMAScript (JavaScript)
Python
Golang
Java 8
.NET 7.0 (C#)
Rust
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 2,860 community submitted regex patterns...
0
us-phone-number
PCRE2 (PHP >=7.3)
phone
Submitted by
Me
-
4 years ago
0
Basic Hex Capture
PCRE2 (PHP >=7.3)
Parses string to extract all hex codes in square brackets along with the text after
Submitted by
anonymous
-
4 years ago
0
Alluxio metrics
PCRE2 (PHP >=7.3)
alluxio metrics
Submitted by
anonymous
-
4 years ago
0
moitepari
PCRE2 (PHP >=7.3)
format moitepari pogasitelen plan to csv
Submitted by
kkonstantin
-
4 years ago
0
ServiceNow NLU test 1
PCRE2 (PHP >=7.3)
NLU test 1
Submitted by
anonymous
-
4 years ago
0
Password Validation
PCRE2 (PHP >=7.3)
Validates a password that has 1 lowercase character, 3 uppercase characters, 1 special character, 1 number and the total length of 8 characters. These are minimums of course, it can have more of each.
Submitted by
anonymous
-
4 years ago
0
sensor
PCRE2 (PHP >=7.3)
sensor
Submitted by
anonymous
-
4 years ago
0
Create escaping operation
PCRE2 (PHP >=7.3)
Parse operation to execute : = equal != not equal = superior
Submitted by
Yggdragstyle
-
4 years ago
0
Full name ( 3 words, firstname-middlename-surname)
PCRE2 (PHP >=7.3)
Regular expression for 3 word Full name
Submitted by
anonymous
-
4 years ago
0
Password Validator v1.0
PCRE2 (PHP >=7.3)
Validates a passwords based on the following rules: x10 characters or more x1 Lowercase / Uppercase characters needs to be found once x1 numeric needed x1 punctuation character needed...
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
Password Validator (8 Characters Max)
PCRE2 (PHP >=7.3)
8 characters long Must include capital letters Must include small letters Must include numbers Must include special characters NOTE: Can also use [[:punct:]] for special characters but it may not be supported by your regex engine.
Submitted by
anonymous
-
4 years ago
(Last modified 4 years ago)
0
Mayne Way Entertainment
PCRE2 (PHP >=7.3)
Hi Everyone, I am Lahyan Djeh Mayne Way Entertainment Founder&CEO http://fbuy.me/v/lahyandjeh# www.maynewayent.com maynewayent.com/https://wa.me/c/254725444492
Submitted by
Lahyan Djeh
-
4 years ago
0
Regex Extrato
PCRE2 (PHP >=7.3)
Identificação do header do extrato, validando os códigos de banco FEBRABAN + Data + Agencia e Conta
Submitted by
Geraldo
-
4 years ago
0
JS Parse rgb or rgba CSS string
PCRE2 (PHP >=7.3)
This will parse and give you the values of an RGB or RGBA CSS style.
Submitted by
Beau Beauchamp, WebTIGERS
-
4 years ago
0
aaa
PCRE2 (PHP >=7.3)
aaa
Submitted by
anonymous
-
4 years ago
0
identify duplicate consecutive words + word combinations to remove
PCRE2 (PHP >=7.3)
Identifies duplicate word and word combinations that exist consecutively within a string for removal. It is currently configured for up to 3 consecutive words but can be extended by adding additional (\s+\w)* to the first groups pattern match logic use with substitution val $1 good for removing d...
Submitted by
GrantO
-
4 years ago
0
Validar email
PCRE2 (PHP >=7.3)
.
Submitted by
anonymous
-
4 years ago
0
Comentarios en Basic
PCRE2 (PHP >=7.3)
.
Submitted by
anonymous
-
4 years ago
0
Get the username from LinkedIn-URL
PCRE2 (PHP >=7.3)
Get only the profile name from international or german LinkedIn-URL
Submitted by
LEIK Software
-
3 years ago
0
email
PCRE2 (PHP >=7.3)
........
Submitted by
ramses
-
3 years ago
1
...
15
16
17
18
19
...
143
Community Library Entry
3
Regular Expression
Golang
`
^
(?P<scheme>
[^
:
\/
?#
]
+
)
:
(?:
\/\/
)?
(?:
(?:
(?P<login>
[^
:
]
+
)
(?:
:
(?P<password>
[^
@
]
+
)?
)?
@
)?
(?P<host>
[^
@
\/
?#:
]
*
)
(?:
:
(?P<port>
\d
+
)?
)?
)?
(?P<path>
[^
?#
]
*
)
(?:
\?
(?P<query>
[^
#
]
*
)
)?
(?:
#
(?P<fragment>
.
*
)
)?
`
gm
Open regex in editor
Description
Extract URL parts only named capturing groups
Submitted by
dixanms
-
3 years ago