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 3,660 community submitted regex patterns...
0
HTML Image Regex
Java 8
This code will find image files with .gif and .jpg extensions which are present in a HTML or CSS code. Here I am using the prefix '/asmproxy/' to identify the resource and then checking if extension ends with a .gif or .jpg. This Regex has its limitations as we are using prefix.
Submitted by
Suman Mummaneni
-
2 years ago
0
CSS RGB validation
ECMAScript (JavaScript)
It validates the RGB expression doesn't break the CSS parser.
Submitted by
Martin
-
2 years ago
(Last modified 2 years ago)
0
chilean plate
ECMAScript (JavaScript)
A regex to parse Chilean automobile plates. It would use WWDDDD or WWWWDD
Submitted by
Dennis Tobar
-
2 years ago
0
Support post-livraison
ECMAScript (JavaScript)
Detect support post-livraison
Submitted by
anonymous
-
2 years ago
0
VTT and SRT parser
ECMAScript (JavaScript)
(?:^|(? ([0-2]\d:[0-5]\d:[0-5]\d[.,]\d{3})(.*?)((?:\d+\n)?(?=[0-2]\d:[0-5]\d:[0-5]\d[.,]\d{3})|$)
Submitted by
anonymous
-
2 years ago
0
OmegaT
Java 8
regular expressions used in OmegaT
Submitted by
anonymous
-
2 years ago
0
Different date format and label them accordingly
ECMAScript (JavaScript)
Classify \d\d \/ \d\d \/ \d{4} \w* \d\d, \d{4} \d{4}-\d\d-\d\d and label them
Submitted by
anonymous
-
2 years ago
0
Typescript Types
ECMAScript (JavaScript)
get all typescript types, as well as imports and exports
Submitted by
snuffyDev
-
2 years ago
0
Password
Java 8
Password
Submitted by
Mohammed Elshaboury
-
2 years ago
0
匹配不以 http 开头的图片
ECMAScript (JavaScript)
匹配不以 http 开头的图片
Submitted by
anonymous
-
2 years ago
0
正则匹配markdown中的图片 但排除 http 开头的地址
ECMAScript (JavaScript)
正则匹配markdown中的图片 但排除 http 开头的地址
Submitted by
anonymous
-
2 years ago
0
Padrão - numeração de contrato CAIXA
ECMAScript (JavaScript)
teste
Submitted by
anonymous
-
2 years ago
0
elasticsearch exception explain regex
Java 8
throw elasticsearch exception logger info, find exception type and reason field
Submitted by
jason
-
2 years ago
0
Removing port number from URL
ECMAScript (JavaScript)
Find port number and remove it from URL
Submitted by
M Rivas
-
2 years ago
0
service selector parser
ECMAScript (JavaScript)
HV Platform
Submitted by
anonymous
-
2 years ago
0
CPF
ECMAScript (JavaScript)
Regex para encontrar um CPF no formato: 999.999.999-99
Submitted by
@rafaelteruyuki
-
2 years ago
(Last modified 2 years ago)
0
CEP
ECMAScript (JavaScript)
Match Brazilian zipcode pattern (CEP): 99999-999
Submitted by
@rafaelteruyuki
-
2 years ago
(Last modified 2 years ago)
0
Telefone fixo com DDD
ECMAScript (JavaScript)
Matches the pattern (99) 999-999
Submitted by
@rafaelteruyuki
-
2 years ago
(Last modified 2 years ago)
0
Data por extenso
ECMAScript (JavaScript)
Data por extenso
Submitted by
@rafaelteruyuki
-
2 years ago
(Last modified 2 years ago)
0
Email teste
ECMAScript (JavaScript)
Email teste
Submitted by
@rafaelteruyuki
-
2 years ago
1
...
175
176
177
178
179
...
183
Community Library Entry
0
Regular Expression
.NET 7.0 (C#)
@"
(?<!
^
)
(?=
[
A
-
Z
]
[
a
-
z
]
)
|
(?<=
[
a
-
z
]
)
(?=
[
A
-
Z
]
)
"
g
Open regex in editor
Description
Splits camel-case string and preserves acronyms
Submitted by
Tyler S.
-
a year ago