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
Validador Email
ECMAScript (JavaScript)
Só aceita emails que comecem com letras ou números, tenha de 0 a 32 caracteres, letras, números, ponto ou hífen, antes do @
Submitted by
Gustavo Américo (GAG)
-
9 years ago
0
IPv6 Regex Match Removal
Python
Works for all IPv6 addresses in removing them using regex
Submitted by
vks
-
9 years ago
0
Pipedrive description product translation
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
Pipedrive product translation
PCRE (PHP <7.3)
Description translation
Submitted by
anonymous
-
9 years ago
0
fio group id
Python
This is for a parser for fio results
Submitted by
scurge
-
9 years ago
0
fred
Python
test
Submitted by
test
-
9 years ago
0
https://regex101.com/r/lS4dV7/1
Python
ipv4 address matching
Submitted by
Unknown
-
9 years ago
0
Proposed OFX DateTimeType pattern for v. 2.1.1+
Python
no description available
Submitted by
Oleg Sakharov (karpuscul@gmail.com)
-
9 years ago
0
remove versions from packages in centos dump
PCRE (PHP <7.3)
no description available
Submitted by
Dmitry Zagorulkin
-
9 years ago
0
$ en anglais ($xx.xx)
PCRE (PHP <7.3)
$ en anglais ($xx.xx)
Submitted by
EA
-
9 years ago
0
Extract all XML attribute names
PCRE (PHP <7.3)
Extracts attribute names from an XML file and presents them as a simple list. Affects all attributes, having or not having values. Includes the "parent" attributes (that have no values but have nested attributes).
Submitted by
O.Khilkevych / D.Mrachkovskyi
-
9 years ago
0
most sas boundaries
PCRE (PHP <7.3)
Picks up %macro, %inc, data step, and proc boundaries.
Submitted by
Leo Lopes
-
9 years ago
0
body tag extract
PCRE (PHP <7.3)
no description available
Submitted by
Girish
-
9 years ago
0
Google-like search query pattern matching
ECMAScript (JavaScript)
To identify quoted strings, single terms as well as subtracting those types. Based on: http://stackoverflow.com/questions/1883188/google-like-search-query-tokenization-string-splitting
Submitted by
Michael La Voie
-
9 years ago
0
Password regex
PCRE (PHP <7.3)
Password pattern looking for strength. Between 8 and 16 characters. At least: 1 UpperCase. 1 LowerCase. 1 SpecialCase. 1 Number
Submitted by
morethansimplycode.blogspot.com.es
-
9 years ago
0
Phone number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
TimeRegex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
java
PCRE (PHP <7.3)
09-10-2015_17:12:59.536_PDT] [ERROR] - [FxG5vfvSFN] [family.gibson@att.net@slid.dum] [] [common] [AbstractServiceLayerBridge] - Service Exception while invoking [ServiceLayer API]: UsageService.getFiberUsageDetails with [TransactionId]: COLDAPP_WS_380920115_144187749927000022_p9mbm20_0 java.lang.ref...
Submitted by
anonymous
-
9 years ago
0
qwqwe
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
(((?:\<|\[)a href=\'|\")?((?:http:\/\/)?((?:www\.)?(?:[\w\d-_]*?\.)+(?
PCRE (PHP <7.3)
no description available
Submitted by
irisha_sutnuk
-
9 years ago
1
...
342
343
344
345
346
...
900
Community Library Entry
1
Regular Expression
Python
r"
TASK
\s
\[
(?P<task_name>
[
A
-
Za
-
z0
-
9_
-
]
+
)
\]
\s
\*
+
\n
(?P<host_result_block>
.
*
?
(
(?=
^
TASK
\s
)
|
(?=
^
PLAY
\s
RECAP
)
)
)
"
gms
Open regex in editor
Description
Parse Task Titles and capture results/output of each task
Submitted by
Paul Cummings
-
a year ago