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
get array content without parenthesis per word
ECMAScript (JavaScript)
get array content without parenthesis per word
Submitted by
anonymous
-
2 years ago
0
test
PCRE (PHP <7.3)
teste
Submitted by
anonymous
-
2 years ago
0
custom email
.NET 7.0 (C#)
custom email
Submitted by
anonymous
-
2 years ago
0
Ruby Gemspec Versioning
Golang
Determine the version value in a gemspec configuration file
Submitted by
Ori
-
2 years ago
0
test
PCRE2 (PHP >=7.3)
test
Submitted by
anonymous
-
2 years ago
2
Parse conventional commits message
PCRE2 (PHP >=7.3)
https://conventionalcommits.org Parses commits like type(scope)!: subject
Submitted by
Alex Kinnee
-
2 years ago
0
Discord Command Name Check
ECMAScript (JavaScript)
Use this to check if your command name works, like if you're doing traslation
Submitted by
Tobiah
-
2 years ago
(Last modified 2 years ago)
0
13000000000 (aaa, vvv)
PCRE2 (PHP >=7.3)
test
Submitted by
anonymous
-
2 years ago
0
stopwordlist
PCRE2 (PHP >=7.3)
stopwordlist
Submitted by
anonymous
-
2 years ago
0
English Name Regex
PCRE2 (PHP >=7.3)
Match only english characters with numbers, spaces, comma and dots. /[a-z0-9.\-\s]/gmi `
Submitted by
Giorgi Gumburashvili
-
2 years ago
0
Find any string between quotes
PCRE (PHP <7.3)
Find any string between the first set of quotes Finds...
Submitted by
Brian Caudill
-
2 years ago
0
replace date format DD.MM.YY -> YYYY.MM.DD
PCRE2 (PHP >=7.3)
Search: 12) 05.09.08 - xxxxxxxxxx Replace: 2008.09.05 - xxxxxxxxxx (0-9\)\x20)(0-9|0-9-0-9)\.(0-9)\.(0-9) 20$4.$3.$2
Submitted by
DbrmnPhrh
-
2 years ago
0
PACCAR VIN trimmer
ECMAScript (JavaScript)
trin vin from a scanned qr
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
1
1
Golang
11
Submitted by
anonymous
-
2 years ago
0
匹配文本开头的(xxx) xxx) ) 或者 xxx.
PCRE2 (PHP >=7.3)
匹配文本开头的(xxx) xxx) ) 或者 xxx.
Submitted by
anonymous
-
2 years ago
0
Learn regex
PCRE2 (PHP >=7.3)
Learn regex
Submitted by
Supermen
-
2 years ago
0
PHPDOC Regex for extracting @param
PCRE2 (PHP >=7.3)
Regex used for extract @param in phpdoc
Submitted by
fmargerit
-
2 years ago
0
Simple Macro Extraction from Ad Tag
ECMAScript (JavaScript)
Submitted by
AM
-
2 years ago
0
regex pattern for Canadian addresses
ECMAScript (JavaScript)
regex pattern for Canadian addresses
Submitted by
Victor Kimura - Surrey, Canada
-
2 years ago
1
do_action and apply_filters name getter for Wordpress
PCRE2 (PHP >=7.3)
This will pluck out any do_action or apply_filters name in your code. Useful if you want to see what actions or filters have been added or deprecated between codebases, etc.
Submitted by
olie480
-
2 years ago
1
...
118
119
120
121
122
...
902
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(?:
[
A
-
Za
-
z
]
\d
?
\d
[
A
-
Za
-
z
]
{2}
)
|
(?:
[
A
-
Za
-
z
]
[
A
-
Za
-
z
\d
]
\d
?
\d
[
A
-
Za
-
z
]
{2}
)
|
(?:
[
A
-
Za
-
z
]
{2}
\d
{2}
?
\d
[
A
-
Za
-
z
]
{2}
)
|
(?:
[
A
-
Za
-
z
]
\d
[
A
-
Za
-
z
]
?
\d
[
A
-
Za
-
z
]
{2}
)
|
(?:
[
A
-
Za
-
z
]
{2}
\d
[
A
-
Za
-
z
]
?
\d
[
A
-
Za
-
z
]
{2}
)
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
7 years ago