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,000 community submitted regex patterns...
0
financial statement item names
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex to fetch domain name from url
PCRE (PHP <7.3)
The 3rd group of the match will give the domain name
Submitted by
anonymous
-
6 years ago
0
praktipy
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
hi jet
PCRE (PHP <7.3)
hi jet
Submitted by
anonymous
-
6 years ago
0
CC
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
TV Show Title and Season/Episode
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
cc2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
RegEx vardump
ECMAScript (JavaScript)
Регулярка для стилизации вардампа для браузерного расширений DViewer
Submitted by
anonymous
-
6 years ago
0
remove brackets
PCRE (PHP <7.3)
remove brackets
Submitted by
anonymous
-
6 years ago
0
L0 Auto Import - PowerSchool File Names
PCRE (PHP <7.3)
Parse PowerSchool filenames used in NYS SIRS Exported files
Submitted by
anonymous
-
6 years ago
0
Group
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Telephone
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
FIO
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
111
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
FIO
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Text to Columns
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
This is called a negated lookbehind.
PCRE (PHP <7.3)
Matches x only if x is not preceded by y.This is called a negated lookbehind. For example, /(?<!-)\d+/ matches a number only if it is not preceded by a minus sign. /(?<!-)\d+/.exec('3') matches "3". /(?<!-)\d+/.exec('-3') match is not found because the number is preceded by the minus sign.
Submitted by
anonymous
-
6 years ago
0
PRODUCAO DD/MM/YYYY A|a|e|TO|HASTA DD/MM/YYYY
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
PRODUCAO MM/YYYY A|a|e|TO|HASTA MM/YYYY
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
VENCIMENTO DD/MM/YYYY A|a|e|TO|HASTA DD/MM/YYYY
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
545
546
547
548
549
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(?:
PRODUCAO:
\s\s
)
(
\d
{2}
[
\-\.\/
]
\d
{2}
[
\-\.\/
]
\d
{4}
)
\s
?
(
A
|
a
|
e
|
TO
|
HASTA
|
\-
|
\,
)
\s
?
(
\d
{2}
[
\-\.\/
]
\d
{2}
[
\-\.\/
]
\d
{4}
)
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
6 years ago