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
Any string that begins and ends with the same vowel.
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Any string that begins and ends with the same vowel.
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
regex my name (John D. Martin III)
PCRE (PHP <7.3)
If you are an academic whose name has a suffix on your name, then you'll have noticed that people are forever leaving it off. This regex checks all the different ways that I've seen my name spelled and matches on the acceptable spellings but not on everything else.
Submitted by
twitter
-
7 years ago
0
specular
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
specular3
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
test
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
PhoneNumber
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Struts Actions Spreadsheet
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
konteyner numaraları
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
StoreCode
PCRE (PHP <7.3)
Used to validate the StoreCode field in the MDS table SourceStore
Submitted by
John McPhillips
-
7 years ago
0
container number
PCRE (PHP <7.3)
maritime container number
Submitted by
anonymous
-
7 years ago
0
WGS84 Validation
ECMAScript (JavaScript)
RE to validate the format of a WGS84 datum coordinates string.
Submitted by
anonymous
-
7 years ago
0
js functions
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Soubisha Password
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Hyphenated1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Hyphenated2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
NoC
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Gateway plugins filename
Golang
This regular expression is used to validated the filename of Gateway plugins.
Submitted by
Julien BREUX
-
7 years ago
0
safe_text
PCRE (PHP <7.3)
text that is resonably safe
Submitted by
anonymous
-
7 years ago
1
...
469
470
471
472
473
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(?:
A
[
KLRZ
]
|
C
[
AOT
]
|
D
[
CE
]
|
FL
|
GA
|
HI
|
I
[
ADLN
]
|
K
[
SY
]
|
LA
|
M
[
ADEINOST
]
|
N
[
CDEHJMVY
]
|
O
[
HKR
]
|
PA
|
RI
|
S
[
CD
]
|
T
[
NX
]
|
UT
|
V
[
AT
]
|
W
[
AIVY
]
)*
$
/
gm
Open regex in editor
Description
Checks to ensure you are keying a valid 2 character state.
Submitted by
anonymous
-
7 years ago