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...
0
Add _V01 to Workflow table names
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Prepend Workflow table names with 'wfw.' if not already there
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Removal of Non Word Characters
ECMAScript (JavaScript)
An example of a regex to use when wanting to remove special characters from a string
Submitted by
anonymous
-
7 years ago
0
PLTF-1537 Validating Numbers to regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Parse JSON Date
PCRE (PHP <7.3)
Easiest Way to Use: $datetime = new DateTime(); $datetime->setTimestamp($timestamp); $datetime->modify($operator . $hours . ' seconds');
Submitted by
anonymous
-
7 years ago
0
PLTF-1537 Validating Numbers to regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Phone numbers
PCRE (PHP <7.3)
Easy US phone numbers
Submitted by
anonymous
-
7 years ago
0
NZ Phone Number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Validate URLs
PCRE (PHP <7.3)
no description available
Submitted by
me
-
7 years ago
0
Html tags with numbers inside
PCRE (PHP <7.3)
no description available
Submitted by
apiyron
-
7 years ago
0
Build KB Call, #1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
lint nested
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Clavister FW CONN
PCRE (PHP <7.3)
Parses out Clavister FW logs for SIEM mapping
Submitted by
anonymous
-
7 years ago
0
div to other elements
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
get file name from file path
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
OfficeStuff
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Referencia
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Italian geographic directory number
PCRE (PHP <7.3)
Useful to discriminate italian geographic numbers from non geographic. Regex validates also the length (in digits) of the directory number Regex considers italian country code and + sign. Italian numbers are considered geographic when are prefixed with 0. Italian prefixes length is 2-4 digits lo...
Submitted by
Stefano Coletta
-
7 years ago
0
Regex for MAC address
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Regex for MAC address with unit tests
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
1
...
44
45
46
47
48
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(
0
[
1
-
9
]
|
1
\d
|
2
[
1
-
8
]
|
29
(?=
-
\d\d
-
(?!
1
[
01345789
]
00
|
2
[
1235679
]
00
)
\d\d
(?:
[
02468
]
[
048
]
|
[
13579
]
[
26
]
)
)
|
30
(?!
-02
)
|
31
(?=
-0
[
13578
]
|
-1
[
02
]
)
)
-
(
0
[
1
-
9
]
|
1
[
0
-
2
]
)
-
(
[
12
]
\d
{3}
)
(
[
01
]
\d
|
2
[
0
-
3
]
)
:
(
[
0
-
5
]
\d
)
:
(
[
0
-
5
]
\d
)
$
/
Open regex in editor
Description
Validate and Capture (in 1000-2999 range) Leap-Year Correct
Submitted by
anonymous
-
11 years ago