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 18,040 community submitted regex patterns...
1
Extract Cert and Expiration from List
ECMAScript (JavaScript)
no description available
Submitted by
John Crowley
-
9 years ago
1
SSL Expiration and Domain Extract
PCRE (PHP <7.3)
no description available
Submitted by
Nick Ramos
-
9 years ago
1
Extract name of tables from a SQL
PCRE (PHP <7.3)
Assumes the database name starts with "IDP_PRD_"
Submitted by
Vance
-
9 years ago
1
Time Parsing
PCRE (PHP <7.3)
no description available
Submitted by
Michael Stemle
-
9 years ago
1
IklusivVolumen
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
-3
Xml Parser (improved description)
PCRE (PHP <7.3)
]+)\s()\s(?:\/>|>(.)) - (with global) finds all tags in scope 1st group is tagname 2nd group is attributes 3rd group (if it exists) is value of the tag ...
Submitted by
veryanonymous
-
9 years ago
0
Xml Parser!
PCRE (PHP <7.3)
Captures TagName, attributes and value in seperate groups. --- Apply same pattern on capture group #3 (using recursion) to parse entire xml! --- Apply regex defined in teststring to capture group #2 to parse all the attributes for the current tag.
Submitted by
veryanonymous
-
9 years ago
1
simple split for email address
ECMAScript (JavaScript)
Simple match for parts of an email address to get firstname, lastname and email domain. (Does not include validity check!)
Submitted by
art-ist.cc
-
9 years ago
1
orphaned
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
message postcode
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Match URLS http|https www|ww|www3 etc
PCRE (PHP <7.3)
match various web urls
Submitted by
ganey
-
9 years ago
1
Code INSEE des départements français
PCRE (PHP <7.3)
Cette expression régulière valide une chaîne de caractères représentant un code département selon le code INSEE. Voir http://www.insee.fr/fr/methodes/nomenclatures/cog/
Submitted by
anonymous
-
9 years ago
1
Dashie Save
PCRE (PHP <7.3)
TS3 REGEX NAME BLACKLIST
Submitted by
Dashie @inetpwnz
-
9 years ago
1
Extract Course Number from Member DataBase Area
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
MarketdataQuoteHandlerMessages
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
qeqe
PCRE (PHP <7.3)
qweqwe
Submitted by
qweqe
-
9 years ago
1
email regex
Python
no description available
Submitted by
thegamerbr1
-
9 years ago
1
Repeating letters more than once
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Get Src Image Tag
PCRE (PHP <7.3)
no description available
Submitted by
Leo Pham
-
9 years ago
1
Thaana
PCRE (PHP <7.3)
Thaana detect
Submitted by
Yoosuf
-
9 years ago
1
...
217
218
219
220
221
...
902
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
^
(?=
.
*
?
[
0
-
9
]
.
*
?
[
0
-
9
]
)
(?=
.
*
[
!@#$%
]
)
[
0
-
9a
-
zA
-
Z!@#$%0
-
9
]
{8,}
$
/
gm
Open regex in editor
Description
min length 6 and 1 number 1 epecial charachtor
Submitted by
anonymous
-
9 years ago