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,000 community submitted regex patterns...
0
Advanced Currency Matcher/Validator
PCRE (PHP <7.3)
Matches typical currency input in most LTR locales. Doesn't handle ISO-style currency abbreviations. Currency symbol must be on the left side for consistency; this my conflict with conventions for some currencies. Requested by Mr Lucky at https://xenforo.com/community/threads/help-with-a-currency...
Submitted by
Paul Buonopane (Zenexer)
-
9 years ago
0
123-456-789
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
HTML Tag Filtering
PCRE (PHP <7.3)
no description available
Submitted by
Mohammed Yehia
-
9 years ago
0
CPE 466 Lab 1 Sentence Delimiter
Python
no description available
Submitted by
anonymous
-
9 years ago
0
input phone
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
phonenumber
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
'Letters' ; '-' or '_' ; 'Letters'
PCRE (PHP <7.3)
begins with letters , then a dash or underscore and ends with letters Perfect for Language Culture Names like 'fr-FR' (or 'fr_FR')
Submitted by
EO-TeSdY
-
9 years ago
0
only match single . and not double
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
RegEx for weaterdata from a YR xml file
Python
no description available
Submitted by
Noko
-
9 years ago
0
Human weight in kg
PCRE (PHP <7.3)
Match theses types of input : 0 0,00 0,07 7 3,5...
Submitted by
Bloodbee
-
9 years ago
0
HTTP / HTTPS link check
ECMAScript (JavaScript)
Check if string contains a valid HTTP / HTTPS link
Submitted by
Dimorphic
-
9 years ago
0
find a string (placeholder) inside a string
Python
find a string (placeholder) inside a string
Submitted by
vikash Kumar Agarwal (vikashmnk)
-
9 years ago
0
ISO 8601 Dates
PCRE (PHP <7.3)
Regex supporting all formats of ISO 8601 dates (with timezone and microseconds) that are compatible with PHP DateTime constructor and strtotime.
Submitted by
mjolnic
-
9 years ago
0
Squid access.log
PCRE (PHP <7.3)
cut/paste into fluentd/td-agent config
Submitted by
HoBoJo
-
9 years ago
0
select internal special chars
PCRE (PHP <7.3)
select all special chars inside a world/sentence
Submitted by
anonymous
-
9 years ago
0
Regex json
Python
no description available
Submitted by
anonymous
-
9 years ago
0
Find method declarations without parameter types
PCRE (PHP <7.3)
no description available
Submitted by
Iulian Onofrei
-
9 years ago
0
Email ID-Full Validation
ECMAScript (JavaScript)
This Regx has full validation of a standard email ID
Submitted by
Eric Abraham
-
9 years ago
0
Get 'value' attribute in 'a' html tag
ECMAScript (JavaScript)
Regex used to avoid text-angular/angular $sanitize temporarily
Submitted by
Derek Severson
-
9 years ago
0
first word until whitespace/linebreak
ECMAScript (JavaScript)
no description available
Submitted by
jpeldes
-
9 years ago
1
...
547
548
549
550
551
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
[
\w
\.
-
]
*
[
a
-
zA
-
Z0
-
9_
]
@
[
\w
\.
-
]
*
[
a
-
zA
-
Z0
-
9
]
\.
[
a
-
zA
-
Z
]
[
a
-
zA
-
Z
\.
]
*
[
a
-
zA
-
Z
]
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
6 years ago