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,000 community submitted regex patterns...
1
Coordinates Validator
PCRE (PHP <7.3)
Valid coordinates (latitude and longitude) look like the following: "23.32353342, -32.543534534".
Submitted by
anonymous
-
9 years ago
1
Email Regex
PCRE (PHP <7.3)
Regex for email.Valid on paste condition also
Submitted by
Aman Jaiswal
-
9 years ago
1
10 digits
ECMAScript (JavaScript)
10 digits
Submitted by
anonymous
-
9 years ago
1
UID REGEX
PCRE (PHP <7.3)
Tests for valid UID format.
Submitted by
anonymous
-
9 years ago
1
UID
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Kerberos SPN validaot
PCRE (PHP <7.3)
Check for a valid Kerberos Service Principal Name
Submitted by
Daywalker
-
9 years ago
1
test
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Nisima
PCRE (PHP <7.3)
v4 => All v5 => Vrac
Submitted by
anonymous
-
9 years ago
1
ADEX
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
dd/mm/yyyy validation regexp
Python
no description available
Submitted by
uknnown
-
9 years ago
1
Us Currency Format with Length Limitation
PCRE (PHP <7.3)
Us Currency Format with Length Limitation optional(,)(.decimals)
Submitted by
Renu Anil
-
9 years ago
1
Return all trans in twigs
PCRE (PHP <7.3)
Made to return all trans from symfony twigs
Submitted by
Andrei Pit
-
9 years ago
1
Password validation
PCRE (PHP <7.3)
Check if the string has a minimum of 6 characters, at least 1 upper case char, at least 1 lower case char and at least 1 number with no spaces.
Submitted by
Webchef.de
-
9 years ago
1
placeholders
PCRE (PHP <7.3)
no description available
Submitted by
kelvi
-
9 years ago
1
Resolve-AutomationModel-Params
PCRE (PHP <7.3)
Used to extract parameter data from an actiontasks properties which would be located in the automation model. Requires the string to be URL UnEscaped.
Submitted by
jesse.puente
-
9 years ago
1
all
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Group of Consonants 3 or more
ECMAScript (JavaScript)
Look for a group of consonants with 3 or more in succession.
Submitted by
Jeff Tomlinson, Prime Data
-
9 years ago
1
geolocation coordinates string
PCRE (PHP <7.3)
Matches a geolocation coordinates string consisting of latitude and longitude separated by a comma with up to 7 decimal places precision.
Submitted by
Steve Piercy
-
9 years ago
1
Isolate Javascript variable name
PCRE (PHP <7.3)
Used to isolate the variable name of a JavaScript variable. Works event if there aren't spaces between the variable and the equals sign.
Submitted by
Keith Mitchell
-
9 years ago
1
IP addr
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
...
628
629
630
631
632
...
900
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
^
(
(
[
a
-
zA
-
z0
-
9
]
)+
(?:
\.
[
\w
-
]
+
)*
)
@
(
(?:
[
\w
-
]
+
\.
)*
\w
[
\w
-
]
{0,66}
)
\.
(
[
a
-
z
]
{2,6}
(?:
\.
[
a
-
z
]
{2}
)?
)
$
/
Open regex in editor
Description
Regex for email.Valid on paste condition also
Submitted by
Aman Jaiswal
-
9 years ago