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,040 community submitted regex patterns...
1
all spaces preceeding numbers
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
two url paths
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
qfdqf
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
fqsfq
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
find sentance with certain phrase
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
extract file in content string
ECMAScript (JavaScript)
no description available
Submitted by
Dang Khoa
-
8 years ago
1
Email list to TestRail multi-user add
Python
no description available
Submitted by
Jon Robinson
-
8 years ago
1
Regular Expression For Decimal Validation | Taha
PCRE (PHP <7.3)
regular expression for positive decimal numbers,decimal regular expression validation,regular expression non negative decimal,regex for number with 2 decimal places,regex decimal number c#,regular expression for decimal number with 2 precision,regex to check decimal values,regular expression decimal...
Submitted by
Taha Bhutta
-
8 years ago
1
Regex For Currency Validation | Taha
PCRE (PHP <7.3)
Simple Currency Validation Regular Expression
Submitted by
Taha Bhutta
-
8 years ago
1
Accept AlphaNumeric and .'_- and middle spaces
PCRE (PHP <7.3)
no description available
Submitted by
Uba
-
8 years ago
0
Perez request
PCRE (PHP <7.3)
See email.
Submitted by
anonymous
-
8 years ago
1
fix windows
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
JS Plugin Macro Pattern
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
8 years ago
1
restore protocol
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
John Eggen Query
ECMAScript (JavaScript)
On comment in http://requestly.in/documentation/replace-rule/
Submitted by
Sachin Jain
-
8 years ago
1
String entre parentesis dentro de comillas
PCRE (PHP <7.3)
Recoge el ultimo parentesis dentro de un campo entrecomillado
Submitted by
anonymous
-
8 years ago
1
C Style block comment
Python
no description available
Submitted by
anonymous
-
8 years ago
1
UK Unique Candiate Identifier (UCI)
PCRE (PHP <7.3)
Basic validation of UK student UCI numbers. Please note that further validation must be done to confirm the final character ( the 'control character') is correct: http://www.wjec.co.uk/exam-officers/entries/unique-candidate-identifiers.html
Submitted by
GeekJosh
-
8 years ago
1
This regex checks to see if any lowercase letter is found after
ECMAScript (JavaScript)
1) First rememeber to escape .?! with a \ 2) Square brackets mean "any of the characters inside us" 3) \s* mean "0 or more spaces after the previous characters" 4) [a-z] mean "any character in the set from a to z that is in lowercase"
Submitted by
Giuseppe Tavella
-
8 years ago
1
Image from URL (Tamarin)
ECMAScript (JavaScript)
no description available
Submitted by
Michael Degli-Angeli
-
8 years ago
1
...
258
259
260
261
262
...
902
Community Library Entry
1
Regular Expression
ECMAScript (JavaScript)
/
^
(
(
BL
[
0
-
9
]
{1,2}
)
|
(
(
BL
[
0
-
9
]
[
A
-
Z
]
)
|
(
(
M
[
0
-
9
]
{1,2}
)
|
((
M
[
0
-
9
]
[
A
-
Z
]
)|
((
OL
[
0
-
9
]
{1,2}
)|
((
OL
[
0
-
9
]
[
A
-
Z
]
)|
((
SK
[
0
-
9
]
{1,2}
)|
((
SK
[
0
-
9
]
[
A
-
Z
]
)|
((
WA
[
0
-
9
]
{1,2}
)|
((
WA
[
0
-
9
]
[
A
-
Z
]
)|
((
WN
[
0
-
9
]
{1,2}
|
((
WN
[
0
-
9
]
[
A
-
Z
]
)))))))))))
)
)
)
[
0
-
9
]
[
A
-
Z
]
{2}
$
/
gm
Open regex in editor
Description
🤯
Submitted by
donivanes
-
4 years ago