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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 11,420 community submitted regex patterns...
0
Match LiveCode Script lines that put message to message box
PCRE (PHP <7.3)
This is intended to be used in LiveCode's ScriptEditor 'Find and Replace' dialog to be able to find all the lines in the stack's scripts where I have put diagnostic comments in scripts that will output the comment to the message box. These take the form of put "string" [& variable] [ & string] ...
Submitted by
Martin Koob
-
4 years ago
0
4x4x4x4 with premature ending
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
keefe partial postive lookahead
PCRE (PHP <7.3)
keefe partial postive lookahead
Submitted by
anonymous
-
4 years ago
0
Tilak
PCRE (PHP <7.3)
buddypres filehacker
Submitted by
anonymous
-
4 years ago
0
encoded test1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
keefe enoded clean
PCRE (PHP <7.3)
keefe enoded clean
Submitted by
anonymous
-
4 years ago
0
regex test 1
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Change sourceIPAddress to sourceIPAddressDNS
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
tilak Phishing
PCRE (PHP <7.3)
tilak Phishing
Submitted by
anonymous
-
4 years ago
0
Full (MySQL) Date Check
PCRE (PHP <7.3)
Checks for date between 1920-01-01 through 2029-12-31 for validity, reformats to make sure the parts are separated by hyphens
Submitted by
anonymous
-
4 years ago
0
Find tr with current text for example #HIDETR#
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
otra de sql con variables
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
tilak filehacker
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Find e-mail in text
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
My text
Python
no description available
Submitted by
anonymous
-
4 years ago
0
blake shell
PCRE (PHP <7.3)
blake encoded shell
Submitted by
anonymous
-
4 years ago
0
tilak shell
PCRE (PHP <7.3)
tilak encoded shell
Submitted by
anonymous
-
4 years ago
0
tilak shell
PCRE (PHP <7.3)
tilak encoded shell
Submitted by
anonymous
-
4 years ago
0
Match path
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
tilak filehacker
PCRE (PHP <7.3)
tilak filehacker
Submitted by
anonymous
-
4 years ago
1
...
474
475
476
477
478
...
571
Disorted Email Addresses
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