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 3,660 community submitted regex patterns...
0
Validate floating-point value string for .NET System.Double and System.Single.
ECMAScript (JavaScript)
After this validation, you can safely put string to System.Double.Parse and System.Single.Parse functions.
Submitted by
Sergey Voronkov
-
7 years ago
0
Split html tags
ECMAScript (JavaScript)
no description available
Submitted by
Jeremi Stadler
-
7 years ago
0
P10 Email RegEx
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Match a single character at a time present in the list
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Url Parse and Parts
ECMAScript (JavaScript)
Parse and split in groups URL parts https://www.pnukee.com.br:443/user/1?v=1#id Group 0 = Full entry (https://pnukee.com.br:80/user/1?v=1#id) Group 1 = Protocol = (http:// or https://)...
Submitted by
Eleison Christiano
-
7 years ago
0
camunda regexps
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
<p>다음에 처음오는 문장
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
test2
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Skip line contain HTML element attribute which have a URL value
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
Email Regex
ECMAScript (JavaScript)
Allow for emails with 2 '.' after the '@' symbol
Submitted by
anonymous
-
7 years ago
0
Voltage
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
lightsail cli scp argument parsing
Golang
no description available
Submitted by
anonymous
-
7 years ago
0
Matching Multiple Names as First & Last Name
ECMAScript (JavaScript)
This Regex will help to match any first & last name from paragraph as one line, if you would to do the matching based on multi lines, add "gm" in the last of this query. /([A-Za-z0-9]\w+\s\w+)+/gm
Submitted by
Fares Alarabi
-
7 years ago
0
Matching any duplicated words
ECMAScript (JavaScript)
By Lynda.com
Submitted by
Fares Alarabi
-
7 years ago
0
firebase downloadURL
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
CURP de México
ECMAScript (JavaScript)
¿Qué es la CURP? La Clave Única de Registro de Población (CURP) es un código alfanumérico único de identidad de 18 caracteres utilizado para identificar oficialmente tanto a residentes como a ciudadanos mexicanos, expedido por el RENAPO. La misma, se forma a partir de las letras de los nombres y ap...
Submitted by
anonymous
-
7 years ago
0
AU Validate
ECMAScript (JavaScript)
Au Validate
Submitted by
anonymous
-
7 years ago
0
Honorifics Detection
ECMAScript (JavaScript)
Detects Honorifics in a string. proceeding character after Honorifics needs to be an non alph numeric to be detected
Submitted by
anonymous
-
7 years ago
0
co
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
0
CSS & JSON finding RegEx
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
7 years ago
1
...
9
10
11
12
13
...
183
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