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...
1
country name
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
Product model extractor
Python
Extracts a model ID from a product title
Submitted by
Aleksandr Glyzov <aleksandr.glyzov@yandex.ru>
-
9 years ago
1
my apache2 access.log regex
PCRE (PHP <7.3)
google.com:80 212.111.203.171 - - [02/Mar/2015:10:27:04 +0000] "GET /css/style.css HTTP/1.1" 304 138 "http://google.com" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36"
Submitted by
marf
-
9 years ago
1
Product model ID extractor
Python
Extracts a model ID from a product title. Like this: "Автомагнитола ALPINE CDE-100EUB/4S белая" -> "CDE-100EUB" Over 80 tests.
Submitted by
anonymous
-
9 years ago
1
require, require_once, include, include_once search
PCRE (PHP <7.3)
no description available
Submitted by
zooli
-
9 years ago
1
tag searching
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
ServiceNow - Retrieve text from an Email
ECMAScript (JavaScript)
retrieve multiple lines from an email body.
Submitted by
Evan Williams
-
9 years ago
1
Single lone digits
PCRE (PHP <7.3)
Find single digits that are not part of an integer. For example, "27" should not match, but "27.1" will match the "1". "27.11" won't match.
Submitted by
Conan Dombroski
-
9 years ago
1
Po box addresses
ECMAScript (JavaScript)
exludes all address with po box
Submitted by
paulo.castro48@gmail.com
-
9 years ago
1
Extract jsfiddle links
PCRE (PHP <7.3)
Extract jsfiddle links
Submitted by
Shrinivas Shukla
-
9 years ago
1
Year regexp
PCRE (PHP <7.3)
regexp for year filtering
Submitted by
anonymous
-
9 years ago
1
sql: insert into
PCRE (PHP <7.3)
insert into table ( a, b, c ) values ( " insert into values (1,2,3)",1,2.3,"a,b" ); insert into table (ee,bb,cc) values (aa,234,"asj",2.3);
Submitted by
suat erenler - sua.gen.tr
-
9 years ago
1
If a line seems valid phone number, change to common format
PCRE (PHP <7.3)
Let's say a phone number is valid in case it has 11 digits (or 13 in case we use 00 instead of + ). Take those lines to common format. original idea was to remove all non-digit characters from those lines with simple match like but combined with look-ahead it just did not work, had to go through ea...
Submitted by
zolo
-
9 years ago
1
RGBA color values and opacity matcher
ECMAScript (JavaScript)
Regex to match R-G-B and Opacity with/without "," and even RGBA text It will match rgba(x,x,x,x.x) rgba (x x X x.x) x,x,x,x.x x x x x.x...
Submitted by
Maulik Soni
-
9 years ago
1
Lookahead phone test with formatting
PCRE (PHP <7.3)
Let's say a phone number is valid in case it has 11 digits only (13 in case of using 00 instead of +). Separators could be anywhere. Take the valid numbers and bring to common format. Original idea was deleting all non-digits but using look-ahead made impossible to use + for remove non-digits, it ne...
Submitted by
zolo
-
9 years ago
1
#tag all languages
ECMAScript (JavaScript)
no description available
Submitted by
Farhad
-
9 years ago
1
URL matching
ECMAScript (JavaScript)
no description available
Submitted by
San
-
9 years ago
1
Wzorzec opisujący czas w postaci 000 np 300 np 1256
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
check format to HH:MM
ECMAScript (JavaScript)
check if the format is HH:MM (00:00 is OK, 0:00 is not)
Submitted by
anonymous
-
9 years ago
1
rstp
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
...
615
616
617
618
619
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(
[
0
-
9
]
{11}
)
|
(
[
0
-
9
]
{10}
)
|
(
[
0
-
9
]
{4}
-
[
0
-
9
]
{3}
-
[
0
-
9
]
{3}
)
|
(
[
0
-
9
]
{5}
-
[
0
-
9
]
{5}
)
/
g
Open regex in editor
Description
no description available
Submitted by
anonymous
-
8 years ago