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
Match pointless spaces in space separated list
ECMAScript (JavaScript)
'test' - no match 'test test' - no match ' test' - match (space at the start) 'test ' - match (space at the end) 'test test' - match (single space in the middle)
Submitted by
J. Harry B.
-
9 years ago
1
regexClassDefinitionJava
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
email check
ECMAScript (JavaScript)
check emailnot match double simbol login..name@domain.com
Submitted by
User
-
9 years ago
5
email (tikhonov)
ECMAScript (JavaScript)
CheckEmail Login start or end simbols [._- ] .login@domain.com - fail -login@domain.com - fail _login@domain.com - fail login.@domain.com - fail...
Submitted by
Tikhonov Alexander <123546.90@mail.ru>
-
9 years ago
(Last modified a year ago)
1
Sql Server Version Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
2
Angular 2 property access
ECMAScript (JavaScript)
no description available
Submitted by
jros
-
9 years ago
1
Find join
Python
no description available
Submitted by
anonymous
-
9 years ago
-1
Find comments or commentblocks in Code V1.01
PCRE (PHP <7.3)
Find Comments starting with # or //. Also finds Commentblocks starting with /* and ending with */.
Submitted by
Candyman1332
-
9 years ago
1
steam profile ID match
PCRE (PHP <7.3)
no description available
Submitted by
ineyy
-
9 years ago
1
parse table
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
1
http://stackoverflow.com/a/34526907/3936440
PCRE (PHP <7.3)
no description available
Submitted by
ViRuSTriNiTy
-
9 years ago
1
Find Comments or Commentblocks in Code
PCRE (PHP <7.3)
Find Comments starting with # or //. Also finds Commentblocks starting with /* and ending with */.
Submitted by
Candyman1332
-
9 years ago
1
0755462021
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
Facebook ID in Links or Widgets
PCRE (PHP <7.3)
Find the ID/name of facebook users/pages in widgets, or links.
Submitted by
anonymous
-
9 years ago
1
Vowel words
ECMAScript (JavaScript)
([!-\~]aeiou)
Submitted by
Ipsita Mohanty
-
9 years ago
3
Non vowel words
ECMAScript (JavaScript)
/\b(+)\b/ig
Submitted by
regexe
-
9 years ago
1
ABC#
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
3-50 all
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
1
if else statement in C++
PCRE (PHP <7.3)
match if else statement in C++
Submitted by
Денис Суховерхов
-
9 years ago
1
ternary operator in C++
PCRE (PHP <7.3)
match ternary operator in C++
Submitted by
Денис Суховерхов
-
9 years ago
1
...
755
756
757
758
759
...
900
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
(
\d
{4}
)
(
0
\d
|
1
[
0
-
2
]
)
(
[
0
-
2
]
\d
|
3
[
0
-
1
]
)
(
[
0
-
1
]
\d
|
2
[
0
-
3
]
)
(
[
0
-
5
]
\d
)
(
[
0
-
5
]
\d
)
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
4 years ago