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
IP Address Matcher
PCRE (PHP <7.3)
Matches all IP adrresses with ports. The bounds are: 1.0.0.1:0 254.255.255.254:65535
Submitted by
anonymous
-
5 years ago
0
exclude dirs
Python
This will match some common directories that you might not want to sync using rsync, gscutil rsync etc
Submitted by
anonymous
-
5 years ago
0
URL Validation
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
sudo transform
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Python UUID in full (str) and compact (hex) form
Python
Python regex used to parse a UUID in its full form (36 chars, including hyphens in 12-4-4-4-12 form), and its compact 32 char form (derived from uuid.hex). This regex was originally created for a Django url converter that supported uuids in both forms.
Submitted by
anonymous
-
5 years ago
0
Replace IPFS Private Key
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
IIIF URL
PCRE (PHP <7.3)
Regex for parse IIIF image request url. Support IIIF image api 2.0 and 2.1.
Submitted by
anonymous
-
5 years ago
0
Partial Substitutions
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
tag URLs
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Mailing Address (US Postal)
PCRE (PHP <7.3)
Groups: street address (and suite if available), PO Box (if available), city, state (abbreviation) and zip code.
Submitted by
anonymous
-
5 years ago
0
Credit Card Number
PCRE (PHP <7.3)
Validates Credit Card Numbers of different type. Supports Visa, MasterCard, American Express, Diners Club, Discover and JCB Taken from http://www.regular-expressions.info/creditcard.html If you want to support only a particular type, customise it based on following....
Submitted by
Ehsan
-
5 years ago
0
India driving License number
PCRE (PHP <7.3)
Indian Driving License number validation
Submitted by
anonymous
-
5 years ago
0
just the monetary low jobs value
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Phone Number Pattern for Sofia
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
worldfootball.net epg
Python
no description available
Submitted by
anonymous
-
5 years ago
0
New Weight Conversion Modified
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Cassandra logs
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
IPV4 regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Only alphanumeric, underscores and minuses
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Comma separated list of alphanumeric, underscore and minus - with spaces around commas
PCRE (PHP <7.3)
Check if a string matches the conditions of being a list of alphanumeric, underscore and minus only strings, separated by commas (which can have spaces on either side).
Submitted by
anonymous
-
5 years ago
1
...
254
255
256
257
258
...
902
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
^
(
[
"'
]
?
)
(
\$
?
(
[
0
-
9
]
{1,3}
,
(
[
0
-
9
]
{3}
,
?
)*
[
0
-
9
]
{3}
|
[
0
-
9
]
{1,3}
)
(
(
.
[
0
-
9
]
{0,3}
)
[
0
-
9
]
{0,10}
)?
)
\1
$
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
4 years ago