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,020 community submitted regex patterns...
1
Regex 02
PCRE2 (PHP >=7.3)
regex replace
Submitted by
anonymous
-
a year ago
1
7z l
PCRE2 (PHP >=7.3)
7z list
Submitted by
anonymous
-
a year ago
(Last modified 8 months ago)
1
For USA Numbers
PCRE2 (PHP >=7.3)
With this Expression you can validate US Numbers
Submitted by
anonymous
-
a year ago
1
NPC名称匹配
PCRE (PHP <7.3)
^\h{4}段首4个横向空格 +不包含左括号、换行符号的其他字符,1~无限循环 \((.*)\)$捕获处于()之中的任意字符内容,右括号在段尾
Submitted by
vicrly
-
a year ago
1
GIT commit title naming convention (strict), conforms to Conventional Commits
PCRE2 (PHP >=7.3)
GIT commit title naming convention (strict), conforms to Conventional Commits (https://www.conventionalcommits.org/en/v1.0.0/)
Submitted by
hexrw
-
a year ago
1
GIT branch naming conventions (strict)
PCRE2 (PHP >=7.3)
A complete validation for GIT branch names. Includes typical branch names such as main and develop as well as feature, release branches and more. Examples: feat/add-i18n-module release/v1.0.0 main...
Submitted by
hexrw
-
a year ago
1
Semantic Version Parser/Validator
PCRE2 (PHP >=7.3)
A regex expression that extracts the components of a semantic version and fails if the version does not conform to the semantic version spec. Based on the 2.0.0 spec
Submitted by
Vespion
-
a year ago
1
TermExtraction_Example
PCRE2 (PHP >=7.3)
Extracts Birth Place from Wikipedia Text
Submitted by
anonymous
-
a year ago
1
Discord Anti-Advertisement 2
Rust
Pair this with my Discord AutoMod Anti Advertisement for full protection against invites. Use this with Discord's Built In AutoMod.
Submitted by
dogknife
-
a year ago
(Last modified 10 months ago)
1
Find all hashtags
PCRE2 (PHP >=7.3)
This regex finds all hashtag (begin by #) in a whole string
Submitted by
Sébastien LHUILLIER
-
a year ago
(Last modified a year ago)
1
Capture Paragraph Text in html
Python
TLDR: It can be used to capture all the paragraphs from some webnovel sites. *update: testing other sites, I've found it lacking. This is intended to match a tag and it's closing tag. It only matches and captures if there are no other html tags nested in the tag. There is room to adjust with th...
Submitted by
anonymous
-
a year ago
(Last modified a year ago)
1
Discord Anti Advertisement
Rust
Discord AutoMod Regex Use this Regex with Discord's built-in automod to prevent all invite URLs. This will block discord.gg/ad but not .gg/ad Consider seeing my "strict" version otherwise.
Submitted by
dogknife
-
a year ago
(Last modified 10 months ago)
1
Discord AutoMod Advert (Strict)
Rust
Use this with Discord automod. Bear in mind, this is "Strict" because it will block discord.gg/myad AND other links such as dsc.gg/myad
Submitted by
dogknife
-
a year ago
(Last modified 10 months ago)
1
extract filename and contents
PCRE2 (PHP >=7.3)
extract filename and contents
Submitted by
anonymous
-
a year ago
1
Match on period following single letter name initial for TTS Rendering without Pause
PCRE2 (PHP >=7.3)
Match on period following single letter name initial for TTS Rendering without Pause Specifically, matches all occurrences of period if preceded by capital letter. Used in T2S android tts app for rendering text without pausing after letter name initial.
Submitted by
Scott K
-
a year ago
1
match hex colors
PCRE2 (PHP >=7.3)
Match hex colors with PCRE2
Submitted by
anonymous
-
a year ago
1
Match ISO 639-1 language codes
PCRE2 (PHP >=7.3)
Match ISO 639-1 language codes
Submitted by
anonymous
-
a year ago
1
Match non LATIN-9 (ISO 8859-15) characters
ECMAScript (JavaScript)
Matches all non LATIN-9 (ISO 8859-15) characters.
Submitted by
anonymous
-
a year ago
1
Ansible Playbook Execution - Task Output
Python
Parse Task Titles and capture results/output of each task
Submitted by
Paul Cummings
-
a year ago
1
Youtube redirect regex
ECMAScript (JavaScript)
Separate the youtube tracking redirect link to its main companions Version 1 Python PHP Version 2...
Submitted by
TS
-
a year ago
(Last modified a year ago)
1
...
30
31
32
33
34
...
901
Community Library Entry
1
Regular Expression
PCRE2 (PHP >=7.3)
/
(
postgresql:
\/\/
)?
(
[
a
-
zA
-
Z
]
{2,}
(
@
)?
[
a
-
zA
-
Z
]
{2,}
)
:
(
[
a
-
zA
-
Z
]
{2,}
(
@
)?
[
a
-
zA
-
Z
]
{2,}
)
(
.
+
)
:
(
\d
{4,}
)
\/
(
[
a
-
zA
-
Z
]
{2,}
)
/
g
Open regex in editor
Description
He simply validate a uri for consuming an azure db
Submitted by
anonymous
-
10 months ago