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
Single Sim
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
html code for LaTeX math expression
Python
Finds any value inside the HTML ... in order to replace with $...$
Submitted by
anonymous
-
5 years ago
0
IMEI Parse with groups.
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Package name
ECMAScript (JavaScript)
The string must be less than 21 characters, mus not have spaces, it can only contain lowercase letters, hyphens (-) or underscores (_)
Submitted by
anonymous
-
5 years ago
0
Move the selector backwards and forwards
PCRE (PHP <7.3)
Add dots BEHIND the y to make the selection go backwards (the y can be anything you want) and add dots BEFORE the \K to make the selection go forwards. The dot after the \K is to make the selection a whole letter.
Submitted by
anonymous
-
5 years ago
0
CDLD-6694
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Take specified main tag and children tags plus contents between children except HTML
PCRE (PHP <7.3)
First matches the children specified opened or self-closed tags and their contents. If not found, matches opening tag. If not found, matches closing tag.
Submitted by
anonymous
-
5 years ago
0
netstat -anob
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
@BANQUEPOSTALE
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
ShortcutLinkInline
Python
no description available
Submitted by
anonymous
-
5 years ago
0
comand.py:InlineCommand
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Matching loop with equality condition
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
sueldos imed
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
IMAP Folders
PCRE (PHP <7.3)
Extract folder name and markers from a list of IMAP folders.
Submitted by
anonymous
-
5 years ago
0
Gif and Jpg finder
PCRE (PHP <7.3)
Used matching to http links within a page_source that are either jpeg or gif formats
Submitted by
anonymous
-
5 years ago
0
Code Gen Regex
PCRE (PHP <7.3)
This is what we use to generate coupon codes for the company events
Submitted by
anonymous
-
5 years ago
0
ASM
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
MAC Address
Python
Simply match a run of the meal MAC address
Submitted by
anonymous
-
5 years ago
0
schema, domain, port
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Match odd amount of backslashes.
Python
This regular expression will match anytime in a string where an odd amount of backslashes directly following eachother are present.
Submitted by
anonymous
-
5 years ago
1
...
568
569
570
571
572
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(
(
[
1
-
9
]
\d
{0,3}
|
[
1
-
5
]
\d
{4}
|
6
[
0
-
4
]
\d
{3}
|
65
[
0
-
4
]
\d
{2}
|
655
[
0
-
2
]
\d
|
6553
[
0
-
5
]
)
)
$
/
Open regex in editor
Description
validates TCP/UDP port number (1..65535)
Submitted by
sanchox
-
10 years ago