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
Class
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Универсальная регулярка для выпаршивания полного стека логических операторов шаблонизатора HTML.
PCRE (PHP <7.3)
no description available
Submitted by
Yuriy Esin (Exomode)
-
7 years ago
0
Mustache Language parser regexp
ECMAScript (JavaScript)
Useful for parsing HTML templates written in mustache language. This regex does not support custom delimiter tags. For documentation see: http://mustache.github.io/mustache.5.html
Submitted by
anonymous
-
7 years ago
0
Lb4 11zad
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
KSA Mobile Validation
PCRE (PHP <7.3)
KSA Mobile Validation Start with 5 and only 9 numbers
Submitted by
anonymous
-
7 years ago
0
File Pdf and Image jpg Extention
PCRE (PHP <7.3)
File Pdf and Image jpg Extention
Submitted by
Wafique
-
7 years ago
0
Lb4 mat
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
E-mail address incl. domain, third-level-domain (optional) and top-level-domain
PCRE (PHP <7.3)
no description available
Submitted by
Ralph Bolliger
-
7 years ago
0
column aliasing
PCRE (PHP <7.3)
no description available
Submitted by
goran biljetina
-
7 years ago
0
chinese phone number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Java Regex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
SRP
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
RegexA-Z
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Alternative to "Current Error" Lookbehind
PCRE (PHP <7.3)
Regex original: (?<!Current\s)Error: Porém expect4j utiliza classes de regex do Apache Oro, que não possuem suporte para lookbehind.
Submitted by
Patrick Bard
-
7 years ago
0
pde-member
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Regex to match positive or negative number or empty string, but not '-' alone
ECMAScript (JavaScript)
no description available
Submitted by
myth
-
7 years ago
0
Operator with Number
PCRE (PHP <7.3)
no description available
Submitted by
Kgunner
-
7 years ago
0
Brackets
PCRE (PHP <7.3)
Task from check.io. You are given an expression with numbers, brackets and operators. For this task only the brackets matter. Brackets come in three flavors: "{}" "()" or "[]". Brackets are used to determine scope or to restrict some expression. If a bracket is open, then it must be closed with a c...
Submitted by
anonymous
-
7 years ago
0
multiple in between regex
PCRE (PHP <7.3)
this helps to extract the start and end tag but even if in between the start appears again.. it just captures the first start and the next occurence of end tag. only thing missing is i want to include the end of the line of the end tag
Submitted by
anonymous
-
7 years ago
0
Registry of Starfleet vessels
PCRE (PHP <7.3)
Matches registry type and number of Starfleet vessels
Submitted by
Luca Mauri
-
7 years ago
1
...
453
454
455
456
457
...
900
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
^
(
(
(
(((
[
a
-
zA
-
Z
]
){1,})
[
]
){1,}
)
(
((
[
a
-
zA
-
Z
]
{1,}
)|
(
[
0
-
9
]
{1,}
)){1}
)
)
|
(
(
[
a
-
zA
-
Z
]
{1,}
){1}
)
)
$
/
Open regex in editor
Description
verify if a string can be use in a username pattern for my project
Submitted by
Feloem Goetia
-
7 years ago