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,000 community submitted regex patterns...
0
Remove Ordinals
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
DIMOB
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
NĂºmeros enteros y nĂºmeros decimales
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Nombre no compuesto
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
html tags with attributes
Python
html tags with attributes
Submitted by
anonymous
-
6 years ago
0
Russian Endings, Single Word Grabber
PCRE (PHP <7.3)
Grabs an ending of russian words. Each word must be on separate line. In development.
Submitted by
anonymous
-
6 years ago
0
texto con 25 w
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
mail
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
URL taking
PCRE (PHP <7.3)
Did in pkasko)
Submitted by
anonymous
-
6 years ago
0
Deacom Version Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
select between quotes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Redirect: /item/yyy-name-and-name
PCRE (PHP <7.3)
[+(.+)\/[3-9]\d\d\-
Submitted by
anonymous
-
6 years ago
0
replace double space
PCRE (PHP <7.3)
string = string.replace(/ +/g," "); for just spaces OR string = string.replace(/(\s)+/g,"$1"); for turning multiple returns into a single return also.
Submitted by
anonymous
-
6 years ago
0
Get the first 2 terms in path using forward slash.
PCRE (PHP <7.3)
At first the objective was to get the string between the first and third slash but, re-working the problem, it was simpler to retrieve the first word between slashes and a subsequent word.
Submitted by
anonymous
-
6 years ago
0
Number plate Finder
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
agent phone
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
URL Teardown v2
PCRE (PHP <7.3)
Adds in teardown of the client id, environment, and domain
Submitted by
anonymous
-
6 years ago
0
URL Teardown v3
PCRE (PHP <7.3)
Adds in teardown of the client id, environment, and domain
Submitted by
anonymous
-
6 years ago
0
DNZ Zone Dump Teardown v1
PCRE (PHP <7.3)
Adds in teardown of the client id, environment, and domain
Submitted by
anonymous
-
6 years ago
0
update
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
164
165
166
167
168
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(?:
(?:
[
A
-
Za
-
z
]
{3,9}
:
?
:
\/\/
www
\.
?
)
|
(?:
[
A
-
Za
-
z
]
{3,9}
:
?
:
\/\/
)
)
(
(?:
[
-;:&=
\+\$
,
\w
]
+
@
)?
[
A
-
Za
-
z0
-
9.-
]
+
|
(?:
www
.
|
[
-;:&=
\+\$
,
\w
]
+
@
)
[
A
-
Za
-
z0
-
9.-
]
+
)
(?:
\/
[
\+
~%
\/
.
\w
-_
]
*
)?
\?
?
(?:
[
-
\+
=&;%@.
\w
_
]
*
)
#
?
(?:
[
.
\!\/\\
w
]
*
)?
/
ug
Open regex in editor
Description
Did in pkasko)
Submitted by
anonymous
-
6 years ago