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 3,460 community submitted regex patterns...
1
regex for iso 8601 date between 1970 and 2999
ECMAScript (JavaScript)
regex for iso 8601 date between 1970 and 2999 that match only valid date, the only mistake possible in this regexp is the bisextile year how are not checked
Submitted by
KurayamiNoDaiTenshi
-
9 years ago
1
Email Finder
ECMAScript (JavaScript)
Finds all emails including .co.uk like ones
Submitted by
Oliver
-
9 years ago
1
Capture shell envs variables
ECMAScript (JavaScript)
Allows the capture of environment variables for expansion or elimination.
Submitted by
Everton Ribeiro <nuxlli@gmail.com>
-
9 years ago
1
ReporteController
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Experimental
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
File Extensions for NodejS recoginition for madge
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
XML URL
ECMAScript (JavaScript)
validates an xml URL. Allows ips and domain names
Submitted by
allofus
-
9 years ago
1
Negative regex for block of text
ECMAScript (JavaScript)
This will make sure a certain regex does not exist in a block of text, that includes new lines
Submitted by
Mandeep Rai
-
9 years ago
1
CSS to Reagent
ECMAScript (JavaScript)
Transforms standart CSS rules to Reagents {:style{}}
Submitted by
Ugis
-
9 years ago
1
test
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
week parser
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Most recent subpattern
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Mobile Number Malta
ECMAScript (JavaScript)
Comprehensive regex for all the 99/79/77 mobile numbers for malta with all types of space paddings used, and with option to add +356 or 00356 with brackets and without.
Submitted by
Xmiq
-
9 years ago
1
JavaScript/EC6/TypeScript import statement
ECMAScript (JavaScript)
Matches import statement in JavaScript/EC6/TypeScript files
Submitted by
Vadym Milichev
-
9 years ago
1
Extract Cert and Expiration from List
ECMAScript (JavaScript)
no description available
Submitted by
John Crowley
-
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
Match different types of quoted strings in Javascript
ECMAScript (JavaScript)
The regex tries to match several types of quotations trying to avoid extreme cases. Bare in mind that this was developed for a specific use and thus some of the matches might not work for you.
Submitted by
Shadi Lahham
-
9 years ago
1
LogTag data from Error stack
ECMAScript (JavaScript)
no description available
Submitted by
rbeer
-
9 years ago
1
Non greedy Quotes JS
ECMAScript (JavaScript)
Matches 4 different types of quoted text avoiding html element and element attributes. Single quotes allow for contractions withing the quotes.
Submitted by
Shadi Lahham
-
9 years ago
1
C#
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
...
123
124
125
126
127
...
173
Community Library Entry
0
Regular Expression
Python
r"
(?P<nom>
^
[
\w\d
]
?
)
\/
(?P<latfield>
(?P<latflag>
[
NS
]
)
(?P<latval>
\d
{1,2}
d
[
0
-
5
]
\d
?
(
\.
\d
*
)?
)
)
\/
(?P<lonfield>
(?P<lonflag>
[
EW
]
)
(?P<lonval>
[
01
]
?
\d
{1,2}
d
[
0
-
5
]
\d
?
(
\.
\d
*
)?
)
$
)
"
s
Open regex in editor
Description
Text fields describing a name and positions
Submitted by
bruno.piguet@meteo.fr
-
11 years ago