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
Match Non-Digit Characters
PCRE2 (PHP >=7.3)
TechnicalBudd.com
Submitted by
anonymous
-
3 months ago
1
Match Specific File Extensions (e.g., .jpg, .png)
PCRE2 (PHP >=7.3)
NewIntrEnds.com
Submitted by
anonymous
-
3 months ago
1
Match Username with Special Characters
PCRE2 (PHP >=7.3)
NetBusinessZone.com
Submitted by
anonymous
-
3 months ago
1
Match HTML Tags with Attributes
PCRE2 (PHP >=7.3)
DoWiesPlace.com
Submitted by
anonymous
-
3 months ago
1
Match Credit Card Numbers (Visa, MasterCard)
PCRE2 (PHP >=7.3)
DesignMagazines.net
Submitted by
anonymous
-
3 months ago
1
Match Decimal Numbers with Thousand Separator
PCRE2 (PHP >=7.3)
BusinessMagHub.com
Submitted by
anonymous
-
3 months ago
1
Match Times in 12-Hour Format (HH AM/PM)
PCRE2 (PHP >=7.3)
onlinebusinessshop.net
Submitted by
anonymous
-
3 months ago
1
Match US ZIP Code with Optional Extension
PCRE2 (PHP >=7.3)
miyuediy.net
Submitted by
anonymous
-
3 months ago
1
Match Hexadecimal Strings regex
PCRE2 (PHP >=7.3)
hackingtechnicalinterview.com
Submitted by
anonymous
-
3 months ago
1
Match SQL Comments
PCRE2 (PHP >=7.3)
fluiddigitalmedia.com
Submitted by
anonymous
-
3 months ago
1
Match Passwords with Minimum Length and Special Characters
PCRE2 (PHP >=7.3)
SimsWriters.com
Submitted by
anonymous
-
3 months ago
1
Match Valid HTML5 Color Names
PCRE2 (PHP >=7.3)
RascalJournal.com
Submitted by
anonymous
-
3 months ago
1
Match Legal HTML Tags
PCRE2 (PHP >=7.3)
NewNulled.com
Submitted by
anonymous
-
3 months ago
1
Match IPv6 Address
PCRE2 (PHP >=7.3)
Movin4Life.org
Submitted by
anonymous
-
3 months ago
0
Match IP Address with Port Number
PCRE2 (PHP >=7.3)
Movin4Life.org
Submitted by
anonymous
-
3 months ago
1
Match Valid UUID v4
PCRE2 (PHP >=7.3)
LariMedia.org
Submitted by
anonymous
-
3 months ago
1
Match Optional URL Path
PCRE2 (PHP >=7.3)
EducationalPage.net
Submitted by
anonymous
-
3 months ago
1
Match US ZIP Code and Extension
PCRE2 (PHP >=7.3)
ButFirstCreate.com
Submitted by
anonymous
-
3 months ago
1
Match Non-Whitespace Characters
PCRE2 (PHP >=7.3)
BestTechTime.com
Submitted by
anonymous
-
3 months ago
1
Match Valid CSS Properties
PCRE2 (PHP >=7.3)
AlpineAngels.net
Submitted by
anonymous
-
3 months ago
1
...
6
7
8
9
10
...
900
Community Library Entry
1
Regular Expression
ECMAScript (JavaScript)
/
^
(
(
(
19
|
[
2
-
9
]
[
0
-
9
]
)
[
0
-
9
]
[
0
-
9
]
)
-
(
(
(
0
[
1
-
9
]
|
1
[
012
]
)
-
(
0
[
1
-
9
]
|
1
[
0
-
9
]
|
2
[
0
-
8
]
)
)
|
(
(
0
[
13578
]
|
1
[
02
]
)
-
(
29
|
30
|
31
)
)
|
(
(
0
[
4,6,9
]
|
11
)
-
(
29
|
30
)
)
)
)
|
(
(
19
|
[
2
-
9
]
[
0
-
9
]
)
(
00
|
04
|
08
|
12
|
16
|
20
|
24
|
28
|
32
|
36
|
40
|
44
|
48
|
52
|
56
|
60
|
64
|
68
|
72
|
76
|
80
|
84
|
88
|
92
|
96
)
-02-29
)
$
/
gm
Open regex in editor
Description
Start from 1900-01-01
Submitted by
anonymous
-
3 months ago