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 11,540 community submitted regex patterns...
0
(ObjectDatabase|GSRoot)Test\.exe
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Req1;Req2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Tree Sitter Scope Selector
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
PHP Regex to Match Any Flipkart Url
PCRE (PHP <7.3)
Since flipkart.com takes https://www. only or starts directly with flipkart.com. this is a regex to match any flipkart url
Submitted by
anonymous
-
5 years ago
0
Credit Card Match
PCRE (PHP <7.3)
Global match all credit cards like numbers (obviously no luhn check). Updated for 2020
Submitted by
anonymous
-
5 years ago
0
DOI
Python
no description available
Submitted by
anonymous
-
5 years ago
0
exemplo aula
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
recupere les nombres apres "page/"
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
check notion exported markdown: is empty page with links to another markdowns only
PCRE (PHP <7.3)
check notion exported markdown: is empty page with links to another markdowns only
Submitted by
anonymous
-
5 years ago
0
song matching
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
jenkins multi-branch pipeline: filter to get named branches AND PR builds
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
MilestoneQ3
Python
no description available
Submitted by
anonymous
-
5 years ago
0
"""
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Test
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Extrae número página nombre de archivo
PCRE (PHP <7.3)
Pensada para extraer el número de página en Switch pero funciona en todas partes menos en Enfocus Switch.
Submitted by
anonymous
-
5 years ago
0
Name extraction for Dad
Python
no description available
Submitted by
anonymous
-
5 years ago
0
One million
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Match substring before and after character
Python
no description available
Submitted by
anonymous
-
5 years ago
0
[caption ...] [/caption]
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
transformIgnorePatterns nagative lookahead
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
464
465
466
467
468
...
577
Community Library Entry
0
Regular Expression
Python
r"
(?<=
^
\*
page
)
(?P<pg>
[
\d
]
{1,3}
)
|
(?<!
;
)
(?P<txt_a>
[
]
.
*
)
(?=
\[
lr
\]
\n
)
|
(?<!
;
)
(?P<txt_b>
^
[
]
{2}
.
*
)
|
(?P<txt_c>
@align
anchor=
\"
center
\"
text=
.
+
)
|
(?P<txt_d>
^
[^
*@[;
]
.
+
)
"
gm
Open regex in editor
Description
Attempting to parse Fate/Stay Night scripts nicely
Submitted by
anonymous
-
a year ago