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,040 community submitted regex patterns...
0
Email
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
USD
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Array-like string
ECMAScript (JavaScript)
Matches strings that are formatted as arrays. The following will match: [ 3.4, -600, foo ] ["foo","bar"] [ bar, 1600 ]...
Submitted by
Chris Swithinbank
-
7 years ago
0
image cid
Golang
no description available
Submitted by
anonymous
-
7 years ago
0
Remove CDATA tags
.NET 7.0 (C#)
no description available
Submitted by
anonymous
-
7 years ago
(Last modified a year ago)
0
Spreadsheet sheet reference
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Palindromes
PCRE (PHP <7.3)
How to detect palindromes up to 12 characters in length. I chose 12 because currently, the longest palindrome that is an actual word is "tattarrattat". This was a fun exercise because someone said pcre can't detect palindromes. Check and mate, my good sir.
Submitted by
Damian Torres
-
7 years ago
0
string valid contains html
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
iranian cell-number pattern
PCRE (PHP <7.3)
Iranian cell phone number pattern to being used in regular expression this work for iranian operator (irancell , Taliya, MCI,RighTel) Irancell and Taliya : 093 , MCI : 091 , RighTel : 092 cheers
Submitted by
nasserFet
-
7 years ago
0
logs
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
logs
PCRE (PHP <7.3)
2017-06-29\s06:50:(\d+).?([A-Z]+).?(?:\[(.*?+))
Submitted by
anonymous
-
7 years ago
0
match all #tag except specified
ECMAScript (JavaScript)
in the example, I'm matching all the #tags except *#thankyouburger *. very useful for when you want to strip out all but one tag
Submitted by
Pavel Dominguez
-
7 years ago
0
IP Address
PCRE (PHP <7.3)
Validate the structure of the IP address with suffix of red
Submitted by
anonymous
-
7 years ago
0
Phone number with dashes
PCRE (PHP <7.3)
Finds valid phone numbers, including dashes Valid: 223-444-5555 Invalid:...
Submitted by
anonymous
-
7 years ago
0
aƱos extendido
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Remove Tabs and check for more than one word after search
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Find end digits of number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
Find number before last 3 and add a comma
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
7 years ago
0
SAG - File download
PCRE (PHP <7.3)
\S\/(\/(download|getn|getnum|file)\.php)\?\S*
Submitted by
anonymous
-
7 years ago
0
Romanian Exact Match
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
1
...
428
429
430
431
432
...
902
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(
(
[^
<>()
\[\]\\
.,;:
\s
@"
]
+
(
\.
[^
<>()
\[\]\\
.,;:
\s
@"
]
+
)*
)
|
(
"
.
+
"
)
)
@
(
(
\[
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
\.
[
0
-
9
]
{1,3}
]
)
|
(
(
[
a
-
zA
-
Z
\-
0
-
9
]
+
\.
)+
[
a
-
zA
-
Z
]
{2,}
)
)
$
/
Open regex in editor
Description
no description available
Submitted by
anonymous
-
7 years ago