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,040 community submitted regex patterns...
0
Find any Characters
ECMAScript (JavaScript)
Finds all characters and numbers in a string.
Submitted by
anonymous
-
8 years ago
0
Find lines with extra semicolons
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Finding comments
PCRE (PHP <7.3)
Used for finding lines with comments in C#
Submitted by
Simon Clement
-
8 years ago
0
regex pour nom fichier pesv2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Find Basic Auth in URL (without protocol)
PCRE (PHP <7.3)
no description available
Submitted by
Aaron Murray
-
8 years ago
0
SQL alias
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
beginsWithOperator
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
@Parse @AppleScript @Handler List into Name, Params, & Tags
PCRE (PHP <7.3)
Processes the list of AppleScript Handlers, which usually have been extracted from a Script Library, with one handler/line. Source data looks like this: changeDate(pPOSIXPath, pDateToChange, pNewDate) -- @Date @Finder @File @Change checkReqdASVer(pVerReqdStr) -- @AppleScript @Ver cleanName(pNameFin...
Submitted by
JMichaelTX
-
8 years ago
0
get date from french text
Python
no description available
Submitted by
anonymous
-
8 years ago
0
@Extract @kMDItem Value from Either Single & @Multiline Text @ccstone
PCRE (PHP <7.3)
This uses the LookAhead feature to include match/capture of all text, either on a single line, or multiple lines, until it finds characters NOT in the "continuation" lines. When a kMDItem uses multiple lines, it starts each continuation line with multiple SPACES. The start of a NEW kMDItem always s...
Submitted by
JMichaelTX
-
8 years ago
0
find base32 and id
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
Postgresql
PCRE (PHP <7.3)
Extracts information from PostgreSQL logs.
Submitted by
Glenn Stewart
-
8 years ago
0
Grab image file from url with query variables /
PCRE (PHP <7.3)
no description available
Submitted by
LinzardB
-
8 years ago
0
Valid Cusip
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Lat Long
PCRE (PHP <7.3)
Lat long in format matching the following: DDMM/DDDMM DDMMSS/DDDMMSS DDMMSS.S/DDDMMSS.S With or without NSEW, colons or +- in front.
Submitted by
anonymous
-
8 years ago
0
Lat Long DD*MM'SS.S"
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
First letter of each word in string
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
0
crontab entry for hour
Python
Example 0,2,3,5-6,9-23/2
Submitted by
anonymous
-
8 years ago
0
amavis lines
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
PGT Billing
PCRE (PHP <7.3)
no description available
Submitted by
BM
-
8 years ago
1
...
27
28
29
30
31
...
902
Community Library Entry
2
Regular Expression
PCRE (PHP <7.3)
/
(
^
(
(
(
0
[
1
-
9
]
|
1
[
0
-
9
]
|
2
[
0
-
8
]
)
[
\/
]
(
0
[
1
-
9
]
|
1
[
012
]
)
)
|
(
(
29
|
30
|
31
)
[
\/
]
(
0
[
13578
]
|
1
[
02
]
)
)
|
(
(
29
|
30
)
[
\/
]
(
0
[
4,6,9
]
|
11
)
)
)
[
\/
]
(
19
|
[
2
-
9
]
[
0
-
9
]
)
\d\d$
)
|
(
^
29
[
\/
]
02
[
\/
]
(
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
)
$
)
/
Open regex in editor
Description
with Leap Year support (dd/MM/yyyy)
Submitted by
gdZeus (uploaded by limker)
-
8 years ago