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
Export Apple device id list
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
GPS from Google Maps
PCRE (PHP <7.3)
Check if Coordinates from Google Maps are valid
Submitted by
freMea
-
8 years ago
1
Guests Thomas Cook
PCRE (PHP <7.3)
no description available
Submitted by
Nowon5
-
8 years ago
1
SWIFT code
ECMAScript (JavaScript)
no description available
Submitted by
Mark Byers
-
8 years ago
1
Search IP
PCRE (PHP <7.3)
This regex searches for an IP
Submitted by
dkon
-
8 years ago
1
resourcepath regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
CSV record
PCRE (PHP <7.3)
Respects both "double-double" and "escaped doublequote" quotes in quotes. Respects newlines in quoted strings and as line-separators. (see also RFC-4180)
Submitted by
aes
-
8 years ago
1
MCR_RegRex
PCRE (PHP <7.3)
reg ex for checking if command has an operator
Submitted by
roots
-
8 years ago
1
pwl repo titles
Python
no description available
Submitted by
Devin McGloin
-
8 years ago
0
version tag
PCRE (PHP <7.3)
Verify if the given text is a version tag, like git tags for versions in the git flow method
Submitted by
bruno-delfino1995
-
8 years ago
0
version tag
PCRE (PHP <7.3)
Verify if the given text is a version tag, like git tags for versions in the git flow method
Submitted by
bruno-delfino1995
-
8 years ago
1
regexp
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
asus firewall
PCRE (PHP <7.3)
no description available
Submitted by
gs
-
8 years ago
1
Medicare Number (HICN)
PCRE (PHP <7.3)
Medicare ID Number (HICN) RegEx Pattern
Submitted by
Ace Therapy
-
8 years ago
1
Takes a word with transcription from dictionary record
PCRE (PHP <7.3)
//Original word and its translation/transcription may be delimited with end-of-line,space and punctuations symblos //There may or may not be a transcription (but we expect it always to be in square brackets) //As well some dictionaries provide several transcriptions for the same word...
Submitted by
anonymous
-
8 years ago
1
url regx validate
PCRE (PHP <7.3)
validate from url with good regx
Submitted by
mohamed nabil hussien
-
8 years ago
2
Number or Range
ECMAScript (JavaScript)
Allows either a number (e.g. "1", "1.01") or a range (e.g. "1-2", "1.0 - 1.3"). Also allows whitespace on either side of the numbers.
Submitted by
Mark Newcomb
-
8 years ago
1
Tag without content
PCRE (PHP <7.3)
Will detect a tag
Submitted by
Marc Clément
-
8 years ago
1
WIP
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
U.S. Telephone Numbers (No 800 or 900#)
PCRE (PHP <7.3)
Block 800, 855, 866, 877, 888 as well as 900 numbers.
Submitted by
hammraido
-
8 years ago
1
...
639
640
641
642
643
...
900
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
(?!
000
)
(?!
900
)
(?!
976
)
(?!
800
)
(?!
855
)
(?!
866
)
(?!
877
)
(?!
888
)
^
(
[
0
-
9
]
(
|
-
)?
)?
(
\(
?
[
0
-
9
]
{3}
\)
?
|
[
0
-
9
]
{3}
)
(
|
-
)?
(
[
0
-
9
]
{3}
(
|
-
)?
[
0
-
9
]
{4}
|
[
a
-
zA
-
Z0
-
9
]
{7}
)
$
/
m
Open regex in editor
Description
Block 800, 855, 866, 877, 888 as well as 900 numbers.
Submitted by
hammraido
-
8 years ago