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 540 community submitted regex patterns...
0
S3 Path with ending .json
Golang
S3 Path with ending .json
Submitted by
Sowmith
-
2 years ago
0
Match token and optional convert to type in string
.NET 7.0 (C#)
I use this in a JSON template together with JObject data to create a JSON string
Submitted by
rkleinkromhof
-
2 years ago
0
IP Table Parse IPID
.NET 7.0 (C#)
Match 1 is the IPID
Submitted by
Tres Little
-
2 years ago
0
Verify email
Java 8
Regex for email
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Get project name from git url
Golang
Used by Zarf to obtain the name of a repository when given a git URL.
Submitted by
Jonathan Perry
-
2 years ago
0
URL
.NET 7.0 (C#)
(@url)([\s]=[\s])(?:')(.)(?:')(?:;)
Submitted by
anonymous
-
2 years ago
0
AsciiDoc delimited block listing
Java 8
https://docs.asciidoctor.org/asciidoc/latest/blocks/delimited/
Submitted by
aisbergde
-
2 years ago
(Last modified 2 years ago)
0
AsciiDoc Subscript
Java 8
https://docs.asciidoctor.org/asciidoc/latest/text/subscript-and-superscript/
Submitted by
aisbergde
-
2 years ago
0
AsciiDoc Superscript
Java 8
https://docs.asciidoctor.org/asciidoc/latest/text/subscript-and-superscript/
Submitted by
aisbergde
-
2 years ago
0
AsciiDoc hard line break
Java 8
https://docs.asciidoctor.org/asciidoc/latest/blocks/hard-line-breaks/
Submitted by
aisbergde
-
2 years ago
0
AsciiDoc underline
Java 8
https://docs.asciidoctor.org/asciidoc/latest/text/text-span-built-in-roles
Submitted by
aisbergde
-
2 years ago
0
AsciiDoc highlight
Java 8
https://docs.asciidoctor.org/asciidoc/latest/text/highlight/
Submitted by
aisbergde
-
2 years ago
(Last modified 2 years ago)
0
AsciiDoc delimited block sidebar
Java 8
https://docs.asciidoctor.org/asciidoc/latest/blocks/delimited/
Submitted by
aisbergde
-
2 years ago
(Last modified 2 years ago)
0
AsciiDoc delimited block comment
Java 8
https://docs.asciidoctor.org/asciidoc/latest/blocks/delimited/
Submitted by
asibergde
-
2 years ago
(Last modified 2 years ago)
0
AsciiDoc block title
Java 8
https://docs.asciidoctor.org/asciidoc/latest/blocks/add-title/
Submitted by
aisberg.de
-
2 years ago
0
AsciiDoc table
Java 8
https://docs.asciidoctor.org/asciidoc/latest/tables/build-a-basic-table/
Submitted by
aisbergde
-
2 years ago
0
Фильтр русских матов
Java 8
оригинал был взят отсюда: https://gist.github.com/imDaniX/8449f40655fcc1b92ae8d756cbca1264 добавил: сучка, трахать, жопа, залупа
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)
0
Initials
.NET 7.0 (C#)
get the initial of a strings
Submitted by
Eddie Choong
-
2 years ago
0
Start and Ends with same Letter
Java 8
regex for a string that starts and ends with the same letter
Submitted by
anonymous
-
2 years ago
0
grade pattern
Java 8
grade pattern for chinese school grade
Submitted by
anonymous
-
2 years ago
1
...
19
20
21
22
23
...
27
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