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 18,040 community submitted regex patterns...
1
Validate mail
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
0
Single xml tag close to separated
ECMAScript (JavaScript)
the tag must be a minumum of 3 characters long so we don't catch any BR, HR, etc.
Submitted by
Agent Codesmith
-
10 years ago
1
SelfMon Filter User & Group
PCRE (PHP <7.3)
Filter selfmon events by user and group using the r= switch. The full filter is entered as: r=/(?=.FULL SET USER1)(?=.Grp= 1)/ms
Submitted by
SelfMon
-
10 years ago
0
1
PCRE (PHP <7.3)
1
Submitted by
1
-
10 years ago
1
URL Validator and Slicer
Python
Validates a URL input as text and then slices it into: protocol, base_url, port, relative_url and parameters. (Multiline and global flags are set for debugging reasons only)
Submitted by
George Shazkho
-
10 years ago
1
Extrae episodios
PCRE (PHP <7.3)
Extrae episodeos de una pagina de series flv
Submitted by
Aldo Lopez
-
10 years ago
1
youtube parser
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
Validador de Senha
ECMAScript (JavaScript)
Para ser valido o texto deve ter entre 6 e 32 caracter entre eles um deve ser um especial, uma letra maiúscula, uma minúscula e um número
Submitted by
Gustavo Américo (GAG)
-
10 years ago
0
messenger facebook without facebook
PCRE (PHP <7.3)
iwant to block fcaebook messenger in layer7
Submitted by
anonymous
-
10 years ago
1
HP OO Shell OPeration
PCRE (PHP <7.3)
I am trying to capture from HP OO SSH shell operation, basicall it will run the commands what we send from HP OO and this operation expects return output to send next command. I am trying to send command gtacl and next command is LOGON username, OO expects to match string to send another command, t...
Submitted by
Lokesh
-
10 years ago
1
Remove GO and split for batch SQL text
ECMAScript (JavaScript)
Useful for when you need to convert a T-SQL MSSMS Server batch into individual SQL requests by removing the GO between them. e.g. Dim SQLBatches As String() = Regex.Split(text, "(?:\s|\r|\n)+GO\s*(?:\r|\n)", RegexOptions.IgnoreCase)
Submitted by
SarahC
-
10 years ago
1
URL parser
Python
gets the ://:/ from am url
Submitted by
anonymous
-
10 years ago
0
search file extention
PCRE (PHP <7.3)
search file extention
Submitted by
fau
-
10 years ago
1
PHP DateInterval Specification Validator
PCRE (PHP <7.3)
This REGEX could be used to validate a PHP DateInterval specification.
Submitted by
Tim Visée, http://timvisee.com/
-
10 years ago
1
imperial string
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
0
test
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
10 years ago
1
regex for redirect
Python
no description available
Submitted by
igor
-
10 years ago
-2
regex for redirect url
PCRE (PHP <7.3)
no description available
Submitted by
igor
-
10 years ago
1
Match nth occurence of expression
PCRE (PHP <7.3)
Change the number in curly braces (3 in this example) to match for the nth occurence of the expression in the two inner parenthesis
Submitted by
Alex Hall
-
10 years ago
0
Pig Latin regex
PCRE (PHP <7.3)
I got really bored so I made this (not so fancy) pig latin generator
Submitted by
jojodmo
-
10 years ago
1
...
97
98
99
100
101
...
902
Community Library Entry
0
Regular Expression
ECMAScript (JavaScript)
/
^
(
https
?
:
\/\/
)?
(
(
[
\w
\.
]
+
)
\.
(
[
a
-
z
]
{2,6}
\.
?
)
(
\/
[
\w
\.
]
*
)*
\/
?
|
(
(?:
(?:
25
[
0
-
5
]
|
2
[
0
-
4
]
\d
|
[
01
]
?
\d\d
?
)
\.
){3}
(?:
25
[
0
-
5
]
|
2
[
0
-
4
]
\d
|
[
01
]
?
\d\d
?
)
|
(
\l
ocalhost
)
)
)
(
\:
(
[
0
-
9
]
{1,4}
|
[
1
-
5
]
[
0
-
9
]
{4}
|
6
[
0
-
4
]
[
0
-
9
]
{3}
|
65
[
0
-
4
]
[
0
-
9
]
{2}
|
655
[
0
-
2
]
[
0
-
9
]
|
6553
[
0
-
5
]
)
)?
$
/
Open regex in editor
Description
Регулярное выражения для проверки URL адреса сервера
Submitted by
anonymous
-
2 years ago
(Last modified 2 years ago)