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
match với a khi và chỉ khi nó không được theo sau bởi b
PCRE2 (PHP >=7.3)
match với a khi và chỉ khi nó không được theo sau bởi b
Submitted by
anonymous
-
2 years ago
0
Get description
PCRE2 (PHP >=7.3)
sss
Submitted by
anonymous
-
2 years ago
0
Replace common tags for content exported from Roam
ECMAScript (JavaScript)
I use a common set of tags for capturing content I might want to consume (e.g., books, podcasts, videos, articles, etc.) in Roam Research.
Submitted by
Keenan Payne
-
2 years ago
0
name of variable being assigned to a specific value
PCRE2 (PHP >=7.3)
name of variable being assigned to a specific value
Submitted by
Lesley Chang
-
2 years ago
2
Dice-Throwing notation
PCRE2 (PHP >=7.3)
You can express the required dice-throwing as usual: 1d10, 2d6, 3d8... The first part (dice number) is mandatory. So, notations like "D10" are not computed, and they must be written as 1d10 The dice number may be expressed as [number]o[number]. For example: 1o3d10. That will mark to implement a Gaus...
Submitted by
Hermes
-
2 years ago
(Last modified 2 years ago)
0
ISO8601 Date/Time Parser
Python
Parses most of the variations of ISO8601 that are allowed, including dates only and date/time with or without the time zone.
Submitted by
Mumblepins
-
2 years ago
0
Extract, match domain from URL
PCRE2 (PHP >=7.3)
Worryin’ about you is like wonderin’ if the sun gonna come up.
Submitted by
@seocringe
-
2 years ago
0
Xerox Product Page
ECMAScript (JavaScript)
regex to match a product page url
Submitted by
anonymous
-
2 years ago
0
flake8-sql False Positives
Python
An example false positive matching docstring for the regex used by flake8-sql (https://github.com/pgjones/flake8-sql).
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Illegal characters for directory name
Java 8
Pattern matches to all illegal characters in directory name. Can be useful for normalizing the folder name before creating it
Submitted by
Vlad Yevtushenko
-
2 years ago
0
20220708 Complex Regular Expression for testing purpose
PCRE2 (PHP >=7.3)
The description of css testing regular expression, It was created to test how social snippet works on Regex101. We''ll it soon in Slack, Facebook, Tweeter and other popular sharing services. Who knows which resalts we'll get. 2 The description of css testing regular expression, It was created to tes...
Submitted by
Anton Author Name Siluyanov
-
2 years ago
0
get package and version from path after several words
PCRE2 (PHP >=7.3)
get package and version from path after several words
Submitted by
anonymous
-
2 years ago
0
regular expresion mathematical expression
Python
re to validate x/(x+b)=(dx)/a like 7/(x+9) = (4x)/3
Submitted by
anonymous
-
2 years ago
0
decimal double point with range number from minus to plus range number
Python
the decimal, double point with range number from minus to plus range number, the example from -199.99 to 199.99 revision from example pattern 1: ^(?:\-?10(?:\.\d\d?)?|\-?[1]?[1-9]?0-9?)$
Submitted by
eki.saputra
-
2 years ago
(Last modified 2 years ago)
0
Find Phone numbers on uncommented lines
ECMAScript (JavaScript)
Nothing at the moment
Submitted by
Bentejuy
-
2 years ago
0
TI dis6x to "binary as ASCII"
PCRE2 (PHP >=7.3)
Automated version of process described here Takes TI dis6x disassembly output Removes leading address and spaces Rotates endianess Presents as "binary as ASCII" blob ready for insertion with HEX edit tool...
Submitted by
https://github.com/ELynx
-
2 years ago
(Last modified 2 years ago)
0
date format YYYY-MM-DD
ECMAScript (JavaScript)
to detect date format YYYY-MM-DD ony starting from 1900
Submitted by
anonymous
-
2 years ago
0
get package and version from path after several words
PCRE2 (PHP >=7.3)
skip a word initially then get the package from pair of slashes
Submitted by
anonymous
-
2 years ago
0
Password with a-z, A-Z, 0-9 or special character
ECMAScript (JavaScript)
at least 1 lower-case character at least 1 upper-case character at least 1 number or special character
Submitted by
Wemo
-
2 years ago
0
Phone number
Python
Phone number
Submitted by
anonymous
-
2 years ago
1
...
130
131
132
133
134
...
902
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
(?=
^.
{7,}
$
)
(?=
.
*
\d
)
(?=
.
*
[
A
-
Za
-
z
]
)
(?=
.
*
[
@'#.$;%^&+=!""()*,
-
\/
:<>?
]
)
.
*
$
/
Open regex in editor
Description
Minimum 7 chars long
Must have at least one char
Must have at least one number
Must have at least one special char i.e.
@'#.$;%^&+=!""()
,-/:<>?*
Submitted by
Piyush
-
9 years ago