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
URL checker
Python
no description available
Submitted by
anonymous
-
6 years ago
0
AWS API access key
ECMAScript (JavaScript)
Catching AWS API access keys
Submitted by
anonymous
-
6 years ago
0
UGUF - Saison
ECMAScript (JavaScript)
Extract season from different title formats
Submitted by
anonymous
-
6 years ago
0
instagram display url
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
hackerrank
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
yyyy-mm
PCRE (PHP <7.3)
will validate year month format. YYYY-MM
Submitted by
Shyamin Ayesh
-
6 years ago
0
Rig Maya
Python
no description available
Submitted by
Mathieu Bouzard
-
4 years ago
(Last modified 3 years ago)
0
HTTP or HTTPs URL
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
positive lookahead example1
Python
Words before (-) or (+)
Submitted by
anonymous
-
6 years ago
0
positive lookahead example2
Python
Words before ->
Submitted by
anonymous
-
6 years ago
0
Match multiple spaces
Python
Match multiple space appearances
Submitted by
anonymous
-
6 years ago
0
have X shipmet
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Your mom
Python
no description available
Submitted by
anonymous
-
6 years ago
0
capture words with no numbers in them
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Client return check
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Java Log -> Fluentd
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Jenkins Log -> Fluentd
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Jenkins Log -> Fluentd
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Neto Log Line Format
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
前後條件_改中文標點
Python
利用Look_behind 【字串】look_ahead 修改中文標點 【, *] 【,\s*] ➔ 空白0次或多次 【,\s?] ➔ 空白0次或1次 【,\s+] ➔ 空白1次或多次
Submitted by
anonymous
-
6 years ago
1
...
538
539
540
541
542
...
900
Community Library Entry
0
Regular Expression
Python
r"
(
static
\s
*
){0,1}
\w
{1,}
\s
{1,}
\w
{1,}
\s
*
\(
.
*
\)
[^
;
]
"
gm
Open regex in editor
Description
(static\s*){0,1}\w{1,}\s{1,}\w{1,}\s*(.*)[^;]
Submitted by
anonymous
-
2 years ago