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
Highest Score
Lowest Score
Most upvotes
Most downvotes
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 12,760 community submitted regex patterns...
0
Swap MM/DD/YYYY to DD/MM/YYYY
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Find //Character entries
ECMAScript (JavaScript)
^(\/\/)(?![\ ])(\w)*
Submitted by
anonymous
-
5 years ago
0
[Ethias] Old File Number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
[Ethias] Informex
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
iostat
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
iotop pipe separated
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Prefix CSS Selectors
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
5 years ago
0
Dutch mobile number
PCRE (PHP <7.3)
Checks if a Dutch mobile number is in the correct format.
Submitted by
anonymous
-
5 years ago
0
{{{ chave }}}
PCRE (PHP <7.3)
Pegar elemento para pode substituir por algo especifico, ou pegar de keys de um objeto por exemplo.
Submitted by
anonymous
-
5 years ago
0
Possible parsing helper / tokenizer
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Diffusion filter
PCRE (PHP <7.3)
First group [5] : school year Second group [4] : domain Third group [2] : gender Fourth group [3] : campus
Submitted by
anonymous
-
5 years ago
0
5317 Compilers Exercise Char Literals
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
md table first col select
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Password Validation
ECMAScript (JavaScript)
Checks that a password has a minimum of 6 characters, at least 1 uppercase letter, 1 lowercase letter, and 1 number with no spaces.
Submitted by
Christian Klemp
-
5 years ago
0
regex Sap
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
regex ejercicio 2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
regex ejercicio 2 con caracteres especiales
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
regex ejercicio 2 con caracteres especiales
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Parse tnsnames.ora file
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
5 years ago
0
Pointers search in *.h files
PCRE (PHP <7.3)
Search pointers in *.h files.
Submitted by
anonymous
-
5 years ago
1
...
474
475
476
477
478
...
638
URL regexp
40
Regular Expression
PCRE (PHP <7.3)
/
(
(
(
[
A
-
Za
-
z
]
{3,9}
:
(?:
\/\/
)?
)
(?:
[
-;:&=
\+\$
,
\w
]
+
@
)?
[
A
-
Za
-
z0
-
9.-
]
+
|
(?:
www
.
|
[
-;:&=
\+\$
,
\w
]
+
@
)
[
A
-
Za
-
z0
-
9.-
]
+
)
(
(?:
\/
[
\+
~%
\/
.
\w
-_
]
*
)?
\?
?
(?:
[
-
\+
=&;%@.
\w
_
]
*
)
#
?
(?:
[
.
\!\/\\
w
]
*
)
)?
)
/
ig
Open regex in editor
Description
A quite neat regular expression for URLs, e-mails..., I found on Matthew O'Riordan's blog.
Submitted by
Matthew O'Riordan
-
12 years ago