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 14,280 community submitted regex patterns...
1
Italian check codeline
PCRE (PHP <7.3)
Expression matches magnetic codeline of checks, in italian banking system. i.e. >1234567890 old layout check >1234567890- 103014250# 66666666+ --> new layout check (notice the '-' check number terminator)...
Submitted by
Benny
-
8 years ago
1
/etc/passwd for most Linux distributions (e.g. Debian)
Python
no description available
Submitted by
anonymous
-
8 years ago
1
parsing objdump output
Python
parsing objdump output
Submitted by
anonymous
-
8 years ago
1
Trim leading zeroes in numbers 012.210 => 12.21
PCRE (PHP <7.3)
Trim leading zeroes 012.210 => 12.21 .002300 => .0023
Submitted by
FAy
-
8 years ago
1
Lockbox Sätze #2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
find field names
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
traceroute
Python
no description available
Submitted by
anonymous
-
8 years ago
1
content
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
images
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
descr
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
My regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Asadasdsd
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
show inventory Partial)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
show inv (not for complex)
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
byline
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
Splunk - Masking data (SIM Card Example)
PCRE (PHP <7.3)
Splunk - Masking Data Uses defensive logic to account for data changes & supports Splunk Schema on Fly!
Submitted by
Tony Nesavich
-
8 years ago
1
Find Days. Simple format
PCRE (PHP <7.3)
Given a string, finds the days spoken about within the string. (US Implementation)
Submitted by
anonymous
-
8 years ago
1
TLO con multiples UPLOAD
Python
no description available
Submitted by
anonymous
-
8 years ago
1
Perl search exclude tags
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
SELLER
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
...
590
591
592
593
594
...
714
Community Library Entry
52
Regular Expression
PCRE (PHP <7.3)
/
^
(?'Username'
[
-
\w\d
\.
]
+
?
)
(?:
\s
+
at
\s
+
|
\s
*
@
\s
*
|
\s
*
(?:
[
\[\]
@
]
){3}
\s
*
)
(?'Domain'
[
-
\w\d
\.
]
*
?
)
\s
*
(?:
dot
|
\.
|
(?:
[
\[\]
dot
\.
]
){3,5}
)
\s
*
(?'TLD'
\w
+
)
$
/
gm
Open regex in editor
Description
Matches distorted email addresses and converts them back to real ones.
Submitted by
dislick
-
12 years ago