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
Find DevExpress Assembly References
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Flag Recogniser
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Action Rec
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
aprs
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
abc
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Codeblock Recogniser
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Finding imports
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Finding imports
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
smartax
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Email Reply Line
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Go Gmail Date Reply Line
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Domain out of URL
Golang
Regular expression ^(?:https?:)?(?:\/\/)?(?:+@)?(?:www\.)?(+) used below extracts domain with subdomains out of a full url. It skips protocol (ex: https:), "//", "@", www subdomain and then captures everything (ex: domain) before ":" or "/" or end of line.
Submitted by
anonymous
-
6 years ago
0
golang function signature
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Message Log
Golang
no description available
Submitted by
anonymous
-
6 years ago
1
Extract columns names from any select query
Golang
This regex can capture any column name from a select query. Be the original name, like are named on table, renamed with a reserved word AS or even without explicit AS. Go on, and test with your query ;)
Submitted by
Jefferson Gouveia
-
6 years ago
0
[229187] - Celular - Tamanho de tela - Invertido ou só número
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
[229187] - Celular - Tamanho de tela
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
[229187] - Celular - Memoria Interna
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
Celulares - Tamanho de tela
Golang
no description available
Submitted by
anonymous
-
6 years ago
0
getfreessimg
Golang
no description available
Submitted by
anonymous
-
6 years ago
1
...
23
24
25
26
27
Community Library Entry
0
Regular Expression
Golang
`
\s
(
[
a
-
zA
-
Z
]
+
://
)*
(
\b
(
[
a
-
zA
-
Z
]
[
\w
-
]
*
\.
){1,3}
[
a
-
zA
-
Z0
-
9
]
+
|
(
\b
(
(
2
[
0
-
4
]
\d
|
25
[
0
-
5
]
|
1
\d\d
|
0
\d\d
|
0
\d
|
\d\d
|
\d
)
\.
){3}
(
2
[
0
-
4
]
\d
|
25
[
0
-
5
]
|
1
\d\d
|
0
\d\d
|
0
\d
|
\d\d
|
\d
)
\b
)
)
(
:
\d
+
)*
(
[
\\\!\"\#\$\%\&\'\(\)\*\+\-\/\:\;\<\=\>\?\@\[\]\^
\`
\{\|\}\~\.
\w
]
)*
(
\,
.
+
\.
[
a
-
z
]
+
)*
`
g
Open regex in editor
Description
no description available
Submitted by
anonymous
-
7 years ago