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,640 community submitted regex patterns...
0
URL name and domain
PCRE (PHP <7.3)
Extracts the name and domain of any link, for instance https://www.google.com/?gfe_rd=cr&#q=generic+search --> google.com
Submitted by
Sergio
-
9 years ago
0
html-link
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
html-link-2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
9 years ago
0
Twitter Hashtags
PCRE (PHP <7.3)
Finds out Twitter Hashtags from a text
Submitted by
Yesha Shah
-
9 years ago
0
Numero de telefone brasileiro
PCRE (PHP <7.3)
Valida numero de telefone brasileiro com 9 ou 8 digitos junto com DDD ou sem DDD, formatado ou nao formatado.
Submitted by
fb.me/raniellyfsilva
-
9 years ago
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
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
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
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
Find method declarations without parameter types
PCRE (PHP <7.3)
no description available
Submitted by
Iulian Onofrei
-
9 years ago
0
Match RE/FWD in subject body
PCRE (PHP <7.3)
no description available
Submitted by
wilco
-
9 years ago
0
Content Type
PCRE (PHP <7.3)
What the fuck?
Submitted by
I'm fucked up, Man
-
9 years ago
0
visa cvv
PCRE (PHP <7.3)
4003447582444271
Submitted by
anonymous
-
9 years ago
1
...
187
188
189
190
191
...
482
Community Library Entry
0
Regular Expression
Golang
`
^
(
\d
+
(?:
\.
\d
{1,3}
)?
)
`
gm
Open regex in editor
Description
Trying to get digits
Submitted by
Arthur Silva
-
2 years ago