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 Discord channel
ECMAScript (JavaScript)
Use this regex to find any mention for a channel. # is a mention for a text channel #! is a mention for a voice channel
Submitted by
Olympic1
-
3 years ago
0
Find Discord role
ECMAScript (JavaScript)
Use this regex to find any mention for a role. @& is a mention for a role
Submitted by
Olympic1
-
3 years ago
0
Find Discord user
ECMAScript (JavaScript)
Use this regex to find any mention for an user. @ is a mention for the registered name of an user @! is a mention for the nickname of an user
Submitted by
Olympic1
-
3 years ago
0
if else parser part 1
Java 8
A basic if else parser. It automatically captures the if equation and the result. It supports if, elif, and else statements. Note: for elif statements part 2 is required. This is because Regex can't use one group to capture multiple elif statements. Part 2 can be found here
Submitted by
Rubeste
-
3 years ago
0
if else parser part 2
Java 8
This is part 2 of my if else parser. Part 2 is only needed for elif statements. Note: From the elif result from part 1 add a #end to close the statement. I might change it a bit in the future so this isn't needed. ...
Submitted by
Rubeste
-
3 years ago
0
Any domain finder
ECMAScript (JavaScript)
This regex made by me, finds any domain which contains https:// or the unsafe version, http://.
Submitted by
Rix The Regex Maker
-
3 years ago
0
Parse ping results
ECMAScript (JavaScript)
Parse the result of a ping, line by line
Submitted by
Heydok
-
3 years ago
(Last modified 3 years ago)
0
parse chemical formula
ECMAScript (JavaScript)
formulacharge)
Submitted by
anonymous
-
3 years ago
0
Crusader Kings 3 plain-text match
PCRE2 (PHP >=7.3)
Simple expression that find plai-text in yml files.
Submitted by
ASMcoder
-
3 years ago
(Last modified 3 years ago)
0
ISO 3166-1 alpha-3
Java 8
ISO 3166-1 alpha-3 countries for validation
Submitted by
anonymous
-
3 years ago
0
single line possibly comma delimited list and end of list
ECMAScript (JavaScript)
for react props
Submitted by
Zach Hardesty
-
3 years ago
0
Mobile Phone Number with code
ECMAScript (JavaScript)
Admite un numero de telefono con su codigo de area
Submitted by
macorreag
-
3 years ago
0
Extraction of Boolean Status by Object ID (JSON)
PCRE2 (PHP >=7.3)
Extraction of boolean status by object ID from JSON string
Submitted by
Michael S.
-
3 years ago
0
Episodes Files
Python
#Episodes Files this pattern split the series episodes files to extract data
Submitted by
anonymous
-
3 years ago
0
Any letter finder
Python
This regex, by me, finds any letter, and may include: Emojis: 🥺 Miscallenious symbols and letters: Şâď Kaomojis: (T෴T ^^) And more: …
Submitted by
Rix The Regex Maker
-
3 years ago
0
Search Engine Marketing
PCRE2 (PHP >=7.3)
Yurrr
Submitted by
anonymous
-
3 years ago
0
assoc_ff_solucao
PCRE (PHP <7.3)
identifies ff in assoc
Submitted by
anonymous
-
3 years ago
0
Numbers, units, and tolerances
PCRE2 (PHP >=7.3)
This regular expression matches a quantity and tolerances, if they exist.
Submitted by
nessalc
-
3 years ago
(Last modified 3 years ago)
0
C######
PCRE2 (PHP >=7.3)
get C with numbers string
Submitted by
Didier
-
3 years ago
0
slovak and czech phone numbers
Python
Slovak and czech phone numbers. 0908312334 +421908332314 004219126559874 +420987654321...
Submitted by
Adrián
-
3 years ago
1
...
798
799
800
801
802
...
902
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
(?<=
https:
\/\/
|
http:
\/\/
)
.
*
/
gm
Open regex in editor
Description
This regex made by me, finds any domain which contains
https://
or the unsafe version,
http://
.
Submitted by
Rix The Regex Maker
-
3 years ago