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,020 community submitted regex patterns...
0
task6
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
lnav - vpxa log format
PCRE (PHP <7.3)
For the vpxa vmware log
Submitted by
anonymous
-
8 years ago
0
Detect non-ASCII characters
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Renaming Torrented Files
PCRE (PHP <7.3)
This regex will rename your torrented files (usually associated with RSS feeds, as that is the style used with this expression) to something more human friendly. If using on a \*nix os, I've noticed that you have to create all parent directories if using the "rename" script (I have not found any wa...
Submitted by
"TJ" Johnson of www.anakin.ca
-
8 years ago
(Last modified a year ago)
0
Australian Address components extraction
PCRE (PHP <7.3)
this extracts the unit number, street number, street name (including suburb), state and post code from a one line address.
Submitted by
Aran
-
8 years ago
0
中英文 特殊字符 30位
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
中英文 特殊字符 30位
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Escape apostrophe in JSON value
PCRE (PHP <7.3)
Escapes a single apostrophe in a json value, either before or after the ':'
Submitted by
anonymous
-
8 years ago
0
404-handler for EPiServer CMS
PCRE (PHP <7.3)
This is a regex to parse Excel data and to construct XML fragments to be used in an import file for 404-handler for EPiServer CMS.
Submitted by
anonymous
-
8 years ago
0
Number between 1 und 99
PCRE (PHP <7.3)
Number between 1 und 99
Submitted by
Andreas
-
8 years ago
0
March anything except
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Televox Appointment Reminder Outgoing File
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
parcel indentifier WA
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
HR Mobile phone number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
CMS Logs
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Commit GitLab
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
idc2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
ZWave command classes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Complex numbers supporting scientific notation and extensive error-checking
PCRE (PHP <7.3)
The regex verifies complex numbers in quite a few mixtures of different floating point representations, with extensive error checking - however, there may be edge cases which i haven't addressed, so feel free to put in more unit tests!
Submitted by
anonymous
-
8 years ago
0
Complex numbers supporting scientific notation and extensive error-checking
PCRE (PHP <7.3)
The regex verifies complex numbers in quite a few mixtures of different floating point representations, with extensive error checking - however, there may be edge cases which i haven't addressed, so feel free to put in more unit tests!
Submitted by
anonymous
-
8 years ago
1
...
37
38
39
40
41
...
901
Community Library Entry
1
Regular Expression
ECMAScript (JavaScript)
/
^
(
(
[^
<>()
\[\]\\
.,;:
\s
@"
]
+
(
\.
[^
<>()
\[\]\\
.,;:
\s
@"
]
+
)*
)
|
(
"
.
+
"
)
)
@
(
(
\[
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
]
)
|
(
(
[
a
-
zA
-
Z
\-
0
-
9
]
+
\.
)+
[
a
-
zA
-
Z
]
{2,}
)
)
$
/
Open regex in editor
Description
Original credit for this expression goes to:
https://emailregex.com/
Submitted by
anonymous
-
a year ago
(Last modified a year ago)