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 12,180 community submitted regex patterns...
0
Locate all quoted (single or double) text, handling nested and also ignoring when in the first param of a ".replace("
PCRE2 (PHP >=7.3)
See https://onlinephp.io/c/a21b4 for PHP preg_replace_callback results
Submitted by
anonymous
-
2 years ago
0
Isolate javascript elements within [html] text
PCRE2 (PHP >=7.3)
Needed to find all content between ... tags, plus any content within a that has an argument starting with on, e.g. See https://onlinephp.io/ for PHP runtime
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Regex to match all instances not inside quotes
PCRE (PHP <7.3)
See https://stackoverflow.com/questions/6462578/regex-to-match-all-instances-not-inside-quotes
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
TatraBanka AMOUNT_VALUE
Java 8
some descriptoin
Submitted by
Inez van Acker, Robert Schulz
-
2 years ago
(Last modified a year ago)
0
Filtro Página web
PCRE (PHP <7.3)
Filtro pagina web
Submitted by
anonymous
-
2 years ago
0
Email check
PCRE2 (PHP >=7.3)
check if email is correct
Submitted by
anonymous
-
2 years ago
0
frequency
PCRE2 (PHP >=7.3)
e
Submitted by
hieppp
-
2 years ago
0
Twitter profile url regexp
PCRE2 (PHP >=7.3)
This regexp tests for Twitter profile urls
Submitted by
nbryskin
-
2 years ago
0
COINGBIT
PCRE (PHP <7.3)
0x18a0C976040e8FD9E529b8B363150b201606396e COINGBIT USD $70000000.0 Paypal gislainelophes@gmail.com CPF 04805338652
Submitted by
COINGBIT
-
2 years ago
(Last modified 2 years ago)
0
thank you pages
PCRE2 (PHP >=7.3)
thank you pages regex
Submitted by
anonymous
-
2 years ago
0
Arabic International Number Format - Datasins.com
PCRE2 (PHP >=7.3)
Arabic International Number Format - Datasins.com
Submitted by
anonymous
-
2 years ago
0
South African Passport Number Regex
PCRE2 (PHP >=7.3)
South African Passport Number Regex Passport number consists of a letter, followed by 8 digits. The letter at the beginning of the passport number is either A (Normal passport holders), M (Maxi passport holders), D (Diplomatic passport holders) or T (Travel passport holders, I cannot confirm this,...
Submitted by
Riaan van den Berg
-
2 years ago
0
Find a Percentage number in some text
PCRE2 (PHP >=7.3)
Finds a percentage number or a number TO number in some text.
Submitted by
anonymous
-
2 years ago
0
Git message with Changelog trailer
PCRE2 (PHP >=7.3)
Check if the git message has a Changelog trailer following the keepachangelog standard.
Submitted by
anonymous
-
2 years ago
0
Decision Table
Java 8
Rules engine CSV Decision Table expression
Submitted by
Vincent Wautelet
-
2 years ago
(Last modified 2 years ago)
0
DLP Control Regex | Credit Card & SSN
PCRE2 (PHP >=7.3)
Regex code that can be used to group for credit card and social security number.
Submitted by
Abdullah Dalgic
-
2 years ago
(Last modified 2 years ago)
0
interpretazione causale bonifico
PCRE2 (PHP >=7.3)
interpretazione causale bonifico
Submitted by
anonymous
-
2 years ago
0
Decimal upto 5 places
PCRE2 (PHP >=7.3)
select only number with or without decimal place and limit decimal places to 5 decimals
Submitted by
YJ
-
2 years ago
0
test
PCRE2 (PHP >=7.3)
address\s\d+\srange\s(?\S+)\s*(?\S+)
Submitted by
anonymous
-
2 years ago
0
Scryfall - Cards with ability counters
PCRE2 (PHP >=7.3)
Find all cards with keyword ability counters in their oracle text.
Submitted by
anonymous
-
2 years ago
1
...
583
584
585
586
587
...
609
Community Library Entry
0
Regular Expression
Java 8
"
(?<scheme>
https
?
|
s
?
ftp
|
wss
?
|
git
)
:
\/\/
(?<subDomain>
[
a
-
z0
-
9-
]
{1,63}
\.
(?:
[
a
-
z0
-
9-
]
{1,63}
\.
)*
)?
(?<domain>
[
a
-
z0
-
9-
]
{1,256}
)
[
.
]
(?<tld>
[
a
-
z0
-
9
]
+
)
(?:
:
(?<port>
[
0
-
9
]
{1,5}
)
)?
(?<path>
\/
.
*
/
?
)?
"
gm
Open regex in editor
Description
The link matcher regex currently matches the most common types of links.
*Removed other links
Submitted by
IkeVoodoo
-
2 years ago
(Last modified 2 years ago)