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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 2,680 community submitted regex patterns...
1
Match a credit card number with optional dashes or spaces
PCRE2 (PHP >=7.3)
TerraWats.com
Submitted by
anonymous
-
a month ago
1
Match Non-Digit Characters
PCRE2 (PHP >=7.3)
TechnicalBudd.com
Submitted by
anonymous
-
a month ago
1
Match Specific File Extensions (e.g., .jpg, .png)
PCRE2 (PHP >=7.3)
NewIntrEnds.com
Submitted by
anonymous
-
a month ago
1
Match Username with Special Characters
PCRE2 (PHP >=7.3)
NetBusinessZone.com
Submitted by
anonymous
-
a month ago
1
Match HTML Tags with Attributes
PCRE2 (PHP >=7.3)
DoWiesPlace.com
Submitted by
anonymous
-
a month ago
1
Match Credit Card Numbers (Visa, MasterCard)
PCRE2 (PHP >=7.3)
DesignMagazines.net
Submitted by
anonymous
-
a month ago
1
Match Decimal Numbers with Thousand Separator
PCRE2 (PHP >=7.3)
BusinessMagHub.com
Submitted by
anonymous
-
a month ago
1
Match Times in 12-Hour Format (HH AM/PM)
PCRE2 (PHP >=7.3)
onlinebusinessshop.net
Submitted by
anonymous
-
a month ago
1
Match US ZIP Code with Optional Extension
PCRE2 (PHP >=7.3)
miyuediy.net
Submitted by
anonymous
-
a month ago
1
Match Hexadecimal Strings regex
PCRE2 (PHP >=7.3)
hackingtechnicalinterview.com
Submitted by
anonymous
-
a month ago
1
Match SQL Comments
PCRE2 (PHP >=7.3)
fluiddigitalmedia.com
Submitted by
anonymous
-
a month ago
1
Match Passwords with Minimum Length and Special Characters
PCRE2 (PHP >=7.3)
SimsWriters.com
Submitted by
anonymous
-
a month ago
1
Match Valid HTML5 Color Names
PCRE2 (PHP >=7.3)
RascalJournal.com
Submitted by
anonymous
-
a month ago
1
Match Legal HTML Tags
PCRE2 (PHP >=7.3)
NewNulled.com
Submitted by
anonymous
-
a month ago
1
Match IPv6 Address
PCRE2 (PHP >=7.3)
Movin4Life.org
Submitted by
anonymous
-
a month ago
1
Match IP Address with Port Number
PCRE2 (PHP >=7.3)
Movin4Life.org
Submitted by
anonymous
-
a month ago
1
Match Valid UUID v4
PCRE2 (PHP >=7.3)
LariMedia.org
Submitted by
anonymous
-
a month ago
1
Match Optional URL Path
PCRE2 (PHP >=7.3)
EducationalPage.net
Submitted by
anonymous
-
a month ago
1
Match US ZIP Code and Extension
PCRE2 (PHP >=7.3)
ButFirstCreate.com
Submitted by
anonymous
-
a month ago
1
Match Non-Whitespace Characters
PCRE2 (PHP >=7.3)
BestTechTime.com
Submitted by
anonymous
-
a month ago
1
2
3
4
5
...
134
Russian car plate
1
Regular Expression
PCRE2 (PHP >=7.3)
/
^
(
[
АВЕКМНОРСТУХавекмнорстух
]
){1}
\d
{3}
(?1)
{2}
\d
{2,3}
$
/
gmi
Open regex in editor
Description
Regular expression for matching Russian car plate without region part
Submitted by
aalexren
-
3 months ago