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
Remove millisecond form ISO date format.
ECMAScript (JavaScript)
e.g. convert new Date().toISOString(); // == "2016-11-21T08:00:00.000Z" into "2016-11-21T08:00:00"
Submitted by
anonymous
-
7 years ago
0
url selector
ECMAScript (JavaScript)
no description available
Submitted by
daniela
-
7 years ago
0
match html tags
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Insulation Purpose
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
frame name myeye 2
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Square Brackets
PCRE (PHP <7.3)
What it captures Allows to capture 'Square Brackets' and any characters in the brackets
Submitted by
abrad1212
-
7 years ago
0
WordPress Meta Query Regex Serialized Array
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Project 'first_floor_desc'
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Project 'title' and 'area'
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Project 'description'
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Find rows not beginning with
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
extract_STATIC_TO_BGP_policy
Python
no description available
Submitted by
anonymous
-
7 years ago
0
Umbraco udi regex
ECMAScript (JavaScript)
no description available
Submitted by
jdpnielsen
-
7 years ago
0
password regex to match ASP.Net identity PasswordValidator
PCRE (PHP <7.3)
password regex to match ASP.Net identity PasswordValidator `var validatior = new PasswordValidator{RequiredLength = 6, RequireNonLetterOrDigit = true, RequireDigit = true, RequireLowercase = true, RequireUppercase = true...
Submitted by
P. Zantinge
-
7 years ago
0
All Strings that are empty or contain at least 2 characters
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Bad OpenXML in Word files
PCRE (PHP <7.3)
Word files not opening after Polarion export - this regexp finds the culprits
Submitted by
anonymous
-
7 years ago
0
policy_extraction
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Human Name in all language
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Regex1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Technip PMC code
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
1
...
450
451
452
453
454
...
901
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(
(
''
)
|
(
""
)
|
(
'
(
(
[^
'
\\
]
{2,}
)
|
((
[^
'
\\
]
|
(
\\
.
))+
(
\\
.
)+
(
[^
'
\\
]
|
(
\\
.
))*)
|
((
[^
'
\\
]
|
(
\\
.
))*
(
\\
.
)+
(
[^
'
\\
]
|
(
\\
.
))+)
)
'
)
|
(
"
(
(
[^
"
\\
]
{2,}
)
|
((
[^
"
\\
]
|
(
\\
.
))+
(
\\
.
)+
(
[^
"
\\
]
|
(
\\
.
))*)
|
((
[^
"
\\
]
|
(
\\
.
))*
(
\\
.
)+
(
[^
"
\\
]
|
(
\\
.
))+)
)
"
)
)
$
/
g
Open regex in editor
Description
no description available
Submitted by
anonymous
-
7 years ago