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
No space in front
PCRE (PHP <7.3)
Prevent a string from having a space at the beginning
Submitted by
anonymous
-
5 years ago
0
between brackets replace
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Extract version strings from AssemblyInfo.cs
Python
Multiline support. Requires correct syntax of Assembly*. Ignores comments
Submitted by
anonymous
-
5 years ago
0
exact sass var match with description
PCRE (PHP <7.3)
this was because of the error of this https://github.com/zoyi/wi-new-dashboard/commit/7d7fffe926e85cc85fb369154e1c90b8be870721#diff-7be54cee11d5c1bf2c654c97c8048042L46 ${({ theme }) => theme.colors.widgetLight}est;
Submitted by
anonymous
-
5 years ago
0
regular expression to match any logical sentential expression recursively
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Match string not starting with specific value
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Strip left leading digits
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
National interstate ins row re
Python
no description available
Submitted by
anonymous
-
5 years ago
0
WhatsappMsgParser
Python
This Regex parse whats-app messages to 4 groups: Group1- Date (dd/mm/yyyy) Group2- Time (hh:mm) Group3- Author/Sender (name or phone number) Group4- Chat (actual chat data)
Submitted by
anonymous
-
5 years ago
0
whatsaapDate
Python
dd/mm/yyyy
Submitted by
anonymous
-
5 years ago
0
Get the text from html
PCRE (PHP <7.3)
Get the clean text inside and between html tags without empty strings
Submitted by
Velisariy
-
5 years ago
0
Forward a copy of mails that contains # # in the subject
PCRE (PHP <7.3)
#.+#
Submitted by
anonymous
-
5 years ago
0
mongo db email validation
Golang
email validation based on the restrictions for entering email adresses into a mongo db email field.
Submitted by
levire.com
-
5 years ago
0
Чистка телефонов (оставить только цифры и переносы строки)
Python
no description available
Submitted by
anonymous
-
5 years ago
0
HARs, Dates, and Dollars
PCRE (PHP <7.3)
Changes: • Eliminates all named groups • In lieu of recursion (unavailable in .NET), uses repeated groupings in alternating order For use in defining sensitive terms in Office 365. Not yet confident that this is in line with documentation (tinyurl.com/y4dm6mao).
Submitted by
anonymous
-
5 years ago
0
Datamatrix - N° de série
Python
no description available
Submitted by
anonymous
-
5 years ago
0
Report url regex
Golang
/ui_tests/master/28c6f611
Submitted by
anonymous
-
5 years ago
0
Split DNS name and DNS zone
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Vérification d'une adresse IP v2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
Vérification d'une adresse IP
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
1
...
395
396
397
398
399
...
901
Community Library Entry
0
Regular Expression
Golang
`
^
(?:
[
a
-
zA
-
Z0
-
9
]
)
(
[
-_0
-
9a
-
zA
-
Z
]
+
(
\.
[
-_0
-
9a
-
zA
-
Z
]
+
)*
|
^
\"
(
[
\001-\010\013\014\016-\037
!#
-
\[\]
-\177
]
|
\\
[
\001-
011
\013\014\016-\177
]
)*
\"
)
@
(?:
[
a
-
zA
-
Z0
-
9
]
(?:
[
a
-
zA
-
Z0
-
9-
]
{0,61}
[
a
-
zA
-
Z0
-
9
]
)?
\.
)+
[
a
-
zA
-
Z
]
{2,6}
\.
?
$
`
Open regex in editor
Description
email validation based on the restrictions for entering email adresses into a mongo db email field.
Submitted by
levire.com
-
5 years ago