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
float
PCRE (PHP <7.3)
matches floats: 1.0f 1.0F .0f .1F 1f 1F
Submitted by
Mateusz Paluch
-
9 years ago
1
H
PCRE (PHP <7.3)
I
Submitted by
anonymous
-
9 years ago
0
match invalid postcode
Python
match as long as not 5digit code
Submitted by
anonymous
-
9 years ago
1
Update something
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Search CSV line for foobar matches
PCRE (PHP <7.3)
Search CSV line for foobar matches
Submitted by
Balmark
-
9 years ago
0
space
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
WKT POINT to longtitude and latitude
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
DDDD, dd MMMM
ECMAScript (JavaScript)
Friday, 23 October
Submitted by
nehakadam
-
9 years ago
1
Czech Bank Account Number
PCRE (PHP <7.3)
no description available
Submitted by
Kuba
-
9 years ago
1
South African Cell numbers
PCRE (PHP <7.3)
Will match on South African Cell numbers includes optional country code. --doesn't support "00" coding. Only supports "+" allows for splitting the number with spaces eg.+2786 123 4567
Submitted by
Zalatos
-
9 years ago
1
Moible Numbers - South Africa
PCRE (PHP <7.3)
Matches mobile numbers in South africa. Supports "00" and "+" numbering supports spacing between number parts examples of matching. +27721234567 , 0821234567 , 002783 123 4567, 079 123 4567
Submitted by
Zalatos
-
9 years ago
1
LogExpert RegexColumnizer for Magento
PCRE (PHP <7.3)
This is for the windows application LogExpert with the RegexColumnizer extension. This will split log entries into columns ( Date | Time | LogLvl | LogMsg )
Submitted by
Chris Soper - Howell Marketing Services
-
9 years ago
-2
match commas between sets or members, but not inside members.
Python
matches only those commas that are between sets, or between members of a set. does not match commas that are inside members.
Submitted by
Amrit Kohli
-
9 years ago
0
ipv4 address
ECMAScript (JavaScript)
no description available
Submitted by
Xiaohui Xu
-
9 years ago
0
Split by character outside quotes
ECMAScript (JavaScript)
Splits text by a character which is not inside the quotes. Example: foo:"01":"02:03":"04:05:06":"07:08:09:10" ^^^ ^^^^ ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^^^^
Submitted by
.iqqmuT
-
9 years ago
1
Find a floating point number followed by 'fps'
PCRE (PHP <7.3)
no description available
Submitted by
mortenjust
-
9 years ago
1
Номер автомобиля
PCRE (PHP <7.3)
Номер автомобиля РФ
Submitted by
anonymous
-
9 years ago
0
Multiple lines comment in Java
PCRE (PHP <7.3)
Begin with /* accept anything inside and finish with */
Submitted by
Wesley Ramos
-
9 years ago
1
GET Duration
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
Bind Zonefile serial number
PCRE (PHP <7.3)
Captures the serial number of a traditional zone file.
Submitted by
Eric Osterberg
-
9 years ago
1
...
142
143
144
145
146
...
900
Community Library Entry
0
Regular Expression
Python
r"
^
(
(
\D
*
)
|
(
.
{0,4}
)
|
(
.
{6,}
)
|
(
00000
)
|
(
\D
+
\d
+
.
*
)
|
(
\d
+
\D
+
.
*
)
)
$
"
Open regex in editor
Description
match as long as not 5digit code
Submitted by
anonymous
-
9 years ago