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
sgalsant_ejercicio1
PCRE2 (PHP >=7.3)
selecciona todas las palabras relacionadas con "mundo"
Submitted by
santiago galván
-
7 months ago
(Last modified 7 months ago)
1
Date and age matcher
Python
matches strings like: "01/04/2023", "14/May/24" and "20" (age). WARNING: for american dates swap day and month! Groups: Date - the whole date Day - day Month - month...
Submitted by
OlgPok
-
7 months ago
(Last modified 7 months ago)
1
resolves bug in vscode extension plibither8.remove-comments v1.2.2, see https://regex101.com/r/1M3UCa/1
PCRE2 (PHP >=7.3)
resolves bug in vscode extension plibither8.remove-comments v1.2.2, see https://regex101.com/r/1M3UCa/1
Submitted by
anonymous
-
7 months ago
1
indented lines with continuation
PCRE (PHP <7.3)
Example taken from SO,
Submitted by
anonymous
-
7 months ago
1
Private IPv4
PCRE2 (PHP >=7.3)
Match only Private IPv4 Does not match Public IPv4 and test Nets
Submitted by
NozZy
-
7 months ago
(Last modified 7 months ago)
1
Private IPv4
PCRE2 (PHP >=7.3)
Match only Public IPv4 Does not match Private IPv4 and test Nets
Submitted by
anonymous
-
7 months ago
1
Public IPv4
PCRE2 (PHP >=7.3)
Match only Public IPv4 Does not match Private IPv4 However does match test Nets
Submitted by
NozZy
-
7 months ago
(Last modified 7 months ago)
1
Valid HTML Tag Pattern
PCRE2 (PHP >=7.3)
Valid HTML Tag Pattern Which HTML tags are considered invalid: Tags ending with a different tag than what it started. Example: Hello Tags with open attributes (or closed with a different type of quote). Examples: Hello or Hello Which HTML tags are considered valid: Tags ending with the same tag...
Submitted by
Ninja
-
7 months ago
(Last modified 7 months ago)
1
match html and xml brackets (<>) and all their content. It doesn’t match inner text.
ECMAScript (JavaScript)
match html and xml brackets () and all their content. It doesn’t match inner text. Useful to remove markup tags from a xml or html string, leaving only the text.
Submitted by
Emasoft
-
7 months ago
1
linuxserver tags for renovate
ECMAScript (JavaScript)
Match: linuxserver/prowlarr:1.16.2.4435-ls67 1.16.2.4435-ls67 linuxserver/radarr:5.4.6.8723-ls215...
Submitted by
Yevhen Kolomeiko (Sad-Soul-Eater)
-
7 months ago
(Last modified 7 months ago)
1
Traefik plugins in traefik-ingress helm values for renovate bot
ECMAScript (JavaScript)
Match: plugins: plugin-name: { moduleName: github.com/maxlerebourg/crowdsec-bouncer-traefik-plugin, version: v1.3.0 } plugins:...
Submitted by
Yevhen Kolomeiko (Sad-Soul-Eater)
-
7 months ago
(Last modified 7 months ago)
1
VictoriaMetrics operator image for renovate bot
ECMAScript (JavaScript)
Match: image: { repository: user_name-123/repo_name-123, tag: v1.23.45_amd64-cluster } image: repository: "user_name-123/repo_name-123"...
Submitted by
Yevhen Kolomeiko (Sad-Soul-Eater)
-
7 months ago
(Last modified 7 months ago)
1
Test
PCRE2 (PHP >=7.3)
Test
Submitted by
Test
-
7 months ago
1
If Conditions
PCRE2 (PHP >=7.3)
Some if confitions
Submitted by
anonymous
-
7 months ago
(Last modified 7 months ago)
2
ROM naming scheme
PCRE2 (PHP >=7.3)
this is some cursed shit, but it does work. I use it to check whether all my ROMs have valid names or not. Makes it easier to read and, more importantly, deduplicate.
Submitted by
Riedler
-
7 months ago
(Last modified 14 days ago)
1
Multiple emails separated with comma
PCRE2 (PHP >=7.3)
Multiple emails separated with comma Only one space allowed after comma Avoid blank spaces between commas
Submitted by
CsarEspejel
-
7 months ago
(Last modified 7 months ago)
1
capture the html verification link
PCRE2 (PHP >=7.3)
show the verification link from the html email
Submitted by
anonymous
-
7 months ago
1
Lnav log format for Magento 2 Zend_Log
PCRE2 (PHP >=7.3)
Lnav log format for Magento 2 Zend_Log
Submitted by
Denys Babenko <denys@babenkocommerce.com>
-
7 months ago
(Last modified 6 months ago)
1
Lnav log format for Magento 2
PCRE2 (PHP >=7.3)
Lnav log format for Magento 2
Submitted by
Denys Babenko <denys@babenkocommerce.com>
-
7 months ago
(Last modified 6 months ago)
1
Split French Address
PCRE2 (PHP >=7.3)
regEx used in VBA code to split french address into different columns in order to format more clearly
Submitted by
Ropper
-
7 months ago
1
...
21
22
23
24
25
...
901
Community Library Entry
1
Regular Expression
PCRE2 (PHP >=7.3)
/
^
(
(?!
\.
jpg
$
|
\.
png
$
|
\.
js
$
|
\.
css
$
)
.
)*
$
/
gmi
Open regex in editor
Description
exclude .jpg .png .js .css path
Submitted by
zm
-
8 months ago