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,020 community submitted regex patterns...
1
HCPCS Level II codes (no modifier)
ECMAScript (JavaScript)
The CMS, who maintain these codes, describe the format as:- "HCPCS Level II codes (also known as alpha-numeric codes) consist of a single alphabetical letter followed by 4 numeric digits." (https://www.cms.gov/medicare/coding-billing/healthcare-common-procedure-system) NOTE: This regex will not iden...
Submitted by
Richard Baxter
-
6 months ago
1
Place of Service [POS] Codes
PCRE2 (PHP >=7.3)
These codes are used to indicate where a medical service was provided in US healthcare (https://www.cms.gov/medicare/coding-billing/place-of-service-codes/code-sets). The codes should be 2 digits. Single digits should have a leading 0. It's possible data loading might drop such values, and then t...
Submitted by
Richard Baxter
-
6 months ago
1
LOINC Medical Codes (from LOINC.org)
PCRE2 (PHP >=7.3)
Pattern to identify LOINC codes, derived from the description in LOINC.org (June 2024):- LOINC codes have a fixed length field of 7 characters within the LOINC database. Current codes are from 3-7 characters long. If you are currently building a system to include LOINC codes, we advise allowing up t...
Submitted by
Richard Baxter
-
6 months ago
1
x86 ASM Register [Case-Insensitive]
PCRE2 (PHP >=7.3)
A RegEx to match any Intel x86-Assembly register in a case-insensitive way. This is due to a limitation of the engine this regular expression was originally written for. Here is an updated version that is written for Regex-Engines that support the /i flag: https://regex101.com/library/4v1bVf
Submitted by
Tim Clemens
-
6 months ago
1
x86 ASM Register
PCRE2 (PHP >=7.3)
A RegEx to match any Intel x86-Assembly register.
Submitted by
Tim Clemens
-
6 months ago
1
chicken bacon onion
PCRE2 (PHP >=7.3)
for find chicken bacon onion
Submitted by
ZXC_SaxarokUWU_ZXC
-
6 months ago
1
Validation - HTTP User Agent
PCRE2 (PHP >=7.3)
Validate only / non-capturing
Submitted by
razor velvet
-
6 months ago
1
RFC5322 email address validation (maybe FEWER STEPS !)
PCRE2 (PHP >=7.3)
validate email address according to RFC 5322 specification. I tried to optimize regex radically restructuring the original BNF-like specification with full support preserved.
Submitted by
hirunotuki
-
6 months ago
2
Test 1 solution
PCRE2 (PHP >=7.3)
thanks
Submitted by
Zeeble Dorp
-
6 months ago
1
Postcode validation
PCRE2 (PHP >=7.3)
I come across Dutch postcodes quite different from normal 5 or 6 digit postcodes. So, this regex covers most possible postcodes. Test cases: 1234 AB // Dutch postal code 12345 // Generic 5-digit postal code 380059 // Indian 6-digit postal code...
Submitted by
Pratik P
-
6 months ago
1
match all test directories
PCRE2 (PHP >=7.3)
s
Submitted by
anonymous
-
6 months ago
1
Fing GTM code in html
PCRE2 (PHP >=7.3)
This function extracts the Google Tag Manager (GTM) key from a given input string. The GTM key typically follows the format "GTM-XXXXXX", where "XXXXXX" represents a unique identifier.
Submitted by
kanapka94
-
6 months ago
1
Atlas MRN
PCRE2 (PHP >=7.3)
Im IT Zollverfahren Atlas werden die bisherigen Zollregistriernummern ATx Nummern durch MRN ersetzt. Der Aufbau der MRN erfolgt nach folgendem Schema: Stelle / Inhalt / zulässige Werte 1-2 / Jahr / 2 Integer (24 bis 99) 3-4 / Land / 2 Char (DE)...
Submitted by
Florian Ledeboer
-
6 months ago
1
regex match
PCRE2 (PHP >=7.3)
regex match on lastname and domain
Submitted by
anonymous
-
6 months ago
0
email matcher
PCRE2 (PHP >=7.3)
match some emails and extract their local part and domain
Submitted by
dang duomg 191
-
6 months ago
(Last modified 6 months ago)
1
Email Validation
.NET 7.0 (C#)
Basic email address validation example
Submitted by
Jeff Mills
-
6 months ago
1
HTML element
ECMAScript (JavaScript)
Extract html element & content
Submitted by
Flymeth
-
6 months ago
1
Youtube id mathcer
PCRE2 (PHP >=7.3)
hehe
Submitted by
anonymous
-
6 months ago
1
Whatsapp link
ECMAScript (JavaScript)
wa.me/phonenumber
Submitted by
Ahab
-
6 months ago
(Last modified 6 months ago)
1
Numbers (signed, integers, decimals, ...)
ECMAScript (JavaScript)
Integers Decimal value starts by comas or dots Handle spaces, "_" characters Signed or not --> Visit https://flymeth.net to view my works
Submitted by
anonymous
-
6 months ago
1
...
19
20
21
22
23
...
901
Community Library Entry
1
Regular Expression
PCRE2 (PHP >=7.3)
/
^
(
[
a
-
z
]
[
a
-
z0
-
9_.
]
+
@
(
[
a
-
z0
-
9-
]
+
\.
)+
[
a
-
z
]
{2,6}
(
,
\s
{0,1}
){0,1}
)+
$
/
Open regex in editor
Description
Multiple emails separated with comma
Only one space allowed after comma
Avoid blank spaces between commas
Submitted by
CsarEspejel
-
7 months ago
(Last modified 7 months ago)