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...
0
ISO 8601 Dates
PCRE (PHP <7.3)
Regex supporting all formats of ISO 8601 dates (with timezone and microseconds) that are compatible with PHP DateTime constructor and strtotime.
Submitted by
mjolnic
-
9 years ago
0
Squid access.log
PCRE (PHP <7.3)
cut/paste into fluentd/td-agent config
Submitted by
HoBoJo
-
9 years ago
0
select internal special chars
PCRE (PHP <7.3)
select all special chars inside a world/sentence
Submitted by
anonymous
-
9 years ago
0
Regex json
Python
no description available
Submitted by
anonymous
-
9 years ago
0
Find method declarations without parameter types
PCRE (PHP <7.3)
no description available
Submitted by
Iulian Onofrei
-
9 years ago
0
Email ID-Full Validation
ECMAScript (JavaScript)
This Regx has full validation of a standard email ID
Submitted by
Eric Abraham
-
9 years ago
0
Get 'value' attribute in 'a' html tag
ECMAScript (JavaScript)
Regex used to avoid text-angular/angular $sanitize temporarily
Submitted by
Derek Severson
-
9 years ago
0
first word until whitespace/linebreak
ECMAScript (JavaScript)
no description available
Submitted by
jpeldes
-
9 years ago
0
APACHE_ACCESS_LOG_PATTERN
Python
Used in lab2 spark for pyspark access log pattern recognition
Submitted by
anonymous
-
9 years ago
0
JSON Double Quoting
ECMAScript (JavaScript)
Insert double quotes between matches around colons. You need to wrap substition.substr(1)+'"' with parenthesis afterwards. (substr is needed to remove hanging doublequote at the start of the string) ex) var json = '{ '+json_ish.replace(regex,subs).substr(1)+'" }'; ...
Submitted by
anonymous
-
9 years ago
0
Outside attr keyword
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
9 years ago
0
Match RE/FWD in subject body
PCRE (PHP <7.3)
no description available
Submitted by
wilco
-
9 years ago
0
Content Type
PCRE (PHP <7.3)
What the fuck?
Submitted by
I'm fucked up, Man
-
9 years ago
0
html img tag src
ECMAScript (JavaScript)
get src url from img tag in html
Submitted by
anonymous
-
9 years ago
0
shankar g mirpuri social security number
Python
no description available
Submitted by
anonymous
-
9 years ago
0
visa cvv
PCRE (PHP <7.3)
4003447582444271
Submitted by
anonymous
-
9 years ago
0
Date Validation
ECMAScript (JavaScript)
This pattern validates all the possible dates for all months in YYYY-MM-DD format. Due to limitations of regex it can not validate the dates of february for leap year. It will allow the date 29 for leap year too. Make sure to validate that yourself.
Submitted by
Ashutosh Agrawal
-
9 years ago
0
Select string in between HTML tags
PCRE (PHP <7.3)
no description available
Submitted by
Jim Sheen
-
9 years ago
0
Base64 Test
ECMAScript (JavaScript)
Tests a string to see if it fits the Base64 format.
Submitted by
anonymous
-
9 years ago
0
float
PCRE (PHP <7.3)
matches floats: 1.0f 1.0F .0f .1F 1f 1F
Submitted by
Mateusz Paluch
-
9 years ago
1
...
346
347
348
349
350
...
902
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
<a
(?:
\s
+
[
\w
:-
]
+
(?:
\s
*
=
\s
*
(?:
(?:
"
[^
"
]
*
"
)
|
(?:
'
[^
'
]
*
'
)
|
[^
>
\s
]
+
)
)?
)*
\s
*
(?:
(
value
)
\s
*
=
\s
*
(?:
"
(
[^
"
]
*
)
"
)
)
(?:
\s
+
[
\w
:-
]
+
(?:
\s
*
=
\s
*
(?:
(?:
"
[^
"
]
*
"
)
|
(?:
'
[^
'
]
*
'
)
|
[^
>
\s
]
+
)
)?
)*
\s
*
>
/
gmi
Open regex in editor
Description
Regex used to avoid text-angular/angular $sanitize temporarily
Submitted by
Derek Severson
-
9 years ago