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,420 community submitted regex patterns...
0
Buscar extensión en un nombre de fichero
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Regex that only matches itself
PCRE (PHP <7.3)
It matches and only matches this regex, including the delimiters. It could be 4 bytes shorter if <> are used as the delimiters instead. From Programming Puzzles & Code Golf.
Submitted by
jimmy23013
-
8 years ago
0
Abbreviations
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
PATTERN_CAPITALIZE
PCRE (PHP <7.3)
Get Capitalized Expressions
Submitted by
Oscar Hermosilla
-
8 years ago
0
Youtube Link - ID bekommen / Prüfen ob es sich um YouTube-Video handelt
PCRE (PHP <7.3)
Prüfen ob es sich um YouTube-Video handelt Anpassung von: http://stackoverflow.com/questions/26477134/php-how-to-know-if-link-is-a-valid-youtube-link
Submitted by
anonymous
-
8 years ago
0
shoehornjs parser
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Dom 27-11-16
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
sdfgsgfdgssgsg
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Search for guid
PCRE (PHP <7.3)
Submitted by
Steven Harris
-
8 years ago
0
vcf
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
require match
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
GET X and Y GPS coords from GMaps
PCRE (PHP <7.3)
GPS coords from GMpas are as: 47.338388, 0.990228 -47.338388, -0.990228 This regex will extract 47.338388 in $1 and 0.990228 in $2 .
Submitted by
freMea
-
8 years ago
0
get float in string
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Метро
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Extract date
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Mobile Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Train Delays
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
0
Parse AssemblyVersion
PCRE (PHP <7.3)
Expression parses AssemblyVersion with following composition structure ... into 3 groups 'version' - . 'patch' - 'build' -
Submitted by
Headspin
-
8 years ago
0
zoek stuks ook in frans :
PCRE (PHP <7.3)
selectie moet eigenlijk alleen de spatie zijn ; lukt nog niet
Submitted by
anonymous
-
8 years ago
0
zoek x of X in headline om altijd in onderkast te krijgen
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
8 years ago
1
...
7
8
9
10
11
...
471
Community Library Entry
3
Regular Expression
Golang
`
(?i)
^
(?:
(
[
a
-
z0
-
9-
]
+
|
\*
)
\.
)?
(
[
a
-
z0
-
9-
]
{1,61}
)
\.
(
[
a
-
z0
-
9
]
{2,7}
)
$
`
gm
Open regex in editor
Description
Validates subdomain, root domain, and wild card domains
Submitted by
AnonymousDapper
-
8 years ago