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 9,220 community submitted regex patterns...
0
Hora formato am/pm hh:mm am/pm
PCRE (PHP <7.3)
Valida el formato de hora hh:mm am/pm
Submitted by
Felipe silva
-
3 years ago
0
certificate
PCRE (PHP <7.3)
letters - numbers
Submitted by
anonymous
-
3 years ago
0
C-SUITE
PCRE (PHP <7.3)
Match the C-SUITE acronyms
Submitted by
TLDR; The OS
-
3 years ago
0
Regex replace word in string if it is not a link
PCRE (PHP <7.3)
Stack: https://stackoverflow.com/a/31770688
Submitted by
anonymous
-
3 years ago
0
my phone regex
PCRE (PHP <7.3)
Pattern means: Phone must start with 0 Length of Phone must be greater than or equal to 10 - 11 numbers Space or Special characters doesn't allow Character doesn't allow
Submitted by
anonymous
-
3 years ago
0
my full name regex
PCRE (PHP <7.3)
Pattern means: Name must start with characters Only lowercase and uppercase characters is allowed Allowed special character: space
Submitted by
anonymous
-
3 years ago
0
RangeForce exercise
PCRE (PHP <7.3)
exercise
Submitted by
Mark
-
3 years ago
0
question select
PCRE (PHP <7.3)
Finds and selects a question from the beginning of the question (after the last sentence/phrase/page break/etc to the question mark (?)
Submitted by
anonymous
-
3 years ago
0
model value
PCRE (PHP <7.3)
for Levi
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Instagram URL
PCRE (PHP <7.3)
For instagram URLs. Updated with latest Domain names
Submitted by
Suraj Shah
-
3 years ago
0
How to find the nth occurrence of a pattern date
PCRE (PHP <7.3)
This is a very useful pattern to find Nth occurency of a data in this format dd/mm/yyyy but can be abstracted for other situations
Submitted by
Mauro99
-
3 years ago
0
Mayne Way Entertainment
PCRE (PHP <7.3)
Your WhatsApp Business code 811-007 You can also tap this link https://www.maynewayent.com
Submitted by
Lahyan Djeh
-
3 years ago
0
Otp Extraction
PCRE (PHP <7.3)
It will used for otp extraction from sms
Submitted by
anonymous
-
3 years ago
0
catch url
PCRE (PHP <7.3)
Matches almost all url
Submitted by
anonymous
-
3 years ago
0
HTML code to HTML entity
PCRE (PHP <7.3)
Quick basic match for the conversion of an html code for the registered symbol to an html entity
Submitted by
Matthew Baker
-
3 years ago
0
Replace Percentage with dot, for comma and remove percent symbol
PCRE (PHP <7.3)
Substituir uma porcentagem "3.78%" por "3,78"
Submitted by
anonymous
-
3 years ago
0
Performa
PCRE (PHP <7.3)
/^(?P0|[1-9]\d)\.(?P0|[1-9]\d)\.(?P0|[1-9]\d)(?:-(?P(?:0|[1-9]\d|\da-zA-Z-)(?:\.(?:0|[1-9]\d|\da-zA-Z-))))?(?:\+(?P[0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/gm
Submitted by
anonymous
-
3 years ago
0
CPF
PCRE (PHP <7.3)
Regra de validação de CPF.
Submitted by
anonymous
-
3 years ago
0
Match first letter of words for names
PCRE (PHP <7.3)
Also matches the first letter after ' or -
Submitted by
anonymous
-
3 years ago
(Last modified 3 years ago)
0
Semver
PCRE (PHP <7.3)
Public library
Submitted by
Masoud shokohi
-
3 years ago
1
...
281
282
283
284
285
...
461
Community Library Entry
31
Regular Expression
ECMAScript (JavaScript)
/
^
(
[
\w
-
]
+
(?:
\.
[
\w
-
]
+
)*
)
@
(
(?:
[
\w
-
]
+
\.
)*
\w
[
\w
-
]
{0,66}
)
\.
(
[
a
-
z
]
{2,6}
(?:
\.
[
a
-
z
]
{2}
)?
)
$
/
i
Open regex in editor
Description
Email address, most used cases
Submitted by
Jago
-
9 years ago