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,020 community submitted regex patterns...
0
full website url find
PCRE (PHP <7.3)
searches for full, valid website urls including large obnoxious search result url links
Submitted by
anonymous
-
5 years ago
0
Latest Radon Change
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
chrome filter
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Delete emptiness
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Class
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Patent Classfication
Python
ipc cpc fi
Submitted by
anonymous
-
5 years ago
0
Patent Classfication
Python
ipc cpc fi
Submitted by
anonymous
-
5 years ago
0
Patent Classfication
Python
ipc cpc fi
Submitted by
anonymous
-
5 years ago
0
Semantic Versioning 2.0.0
PCRE (PHP <7.3)
According to the spec from https://semver.org/spec/v2.0.0.html
Submitted by
anonymous
-
5 years ago
0
Nginx subdomain wild card
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
LLR_get_invoice_details
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
<a> tag search
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Catch full string up until last backslash
PCRE (PHP <7.3)
Anything before the final \ will be detected. In the example below, the files will be stripped from the file-path as the regex will detect anything in the filepath up until the final backslash. setup In the root of your project you save the script below in index.php and should create folder named a...
Submitted by
anonymous
-
5 years ago
0
images_extension
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
jelszó
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
teszt
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
hl-skifox
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
CSS Hex Color
ECMAScript (JavaScript)
CSS Hex Color Regex for JS Supports alpha value (4 and 8 character hex codes) introduced in CSS Color Module Level 4 Well tested
Submitted by
anonymous
-
5 years ago
1
CSS RGB Color
ECMAScript (JavaScript)
CSS RGB Color Regex for JS Supports RGB and RGBA syntax (identical in CSS Color Module Level 4) Well tested Allows for decimal values Currently does not support percentage values or CSS Color Module Level 4 white-space syntax
Submitted by
anonymous
-
5 years ago
0
bad regex URL catching
Python
no description available
Submitted by
anonymous
-
5 years ago
1
...
417
418
419
420
421
...
901
Community Library Entry
1
Regular Expression
ECMAScript (JavaScript)
/
^
rgba
?
\(
(
(
[
+-
]
?
\d
+
(
\.
\d
+
)?
)
,
\s
*
){2}
[
+-
]
?
\d
+
(
\.
\d
+
)?
(
,
\s
*
(
0
?
\.
\d
|
[
01
]
)
)?
\)
$
/
Open regex in editor
Description
CSS RGB Color Regex for JS
Supports RGB and RGBA syntax (identical in CSS Color Module Level 4)
Well tested
Allows for decimal values
Currently does not support percentage values or CSS Color Module Level 4 white-space syntax
Submitted by
anonymous
-
5 years ago