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
Domain Grabber
PCRE (PHP <7.3)
Grabs the domain of a url
Submitted by
anonymous
-
6 years ago
0
subdomain Grabber
PCRE (PHP <7.3)
Gets the subdomain in a url
Submitted by
anonymous
-
6 years ago
0
phone number grabber
PCRE (PHP <7.3)
get's a phone number with any type of writing
Submitted by
anonymous
-
6 years ago
0
solution3-ece590.06
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Bilhete Globo
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
DSN Parser
PCRE (PHP <7.3)
Parser for DSN. Used in PHP PDO MySQL configuration.
Submitted by
anonymous
-
6 years ago
0
Bilhetes Sulamerica Avaya
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Capture width value of svg tag.
PCRE (PHP <7.3)
Captures the width value of a single SVG tag.
Submitted by
anonymous
-
6 years ago
0
Second part of two part name
PCRE (PHP <7.3)
Used this in the DETECT pilot study to pull apart first names that had two parts (e.g., mary jo).
Submitted by
anonymous
-
6 years ago
0
First part of two part name
PCRE (PHP <7.3)
Used this in the DETECT pilot study to pull apart first names that had two parts (e.g., mary jo).
Submitted by
anonymous
-
6 years ago
0
Optional decomposition
PCRE (PHP <7.3)
Find optional decomposition in codebase
Submitted by
anonymous
-
6 years ago
0
Select all special characters except white space
PCRE (PHP <7.3)
\d - numeric class \s - whitespace a-zA-Z - matches all the letters ^ - negates them all - so you get - non numeric chars, non spaces
Submitted by
anonymous
-
6 years ago
0
US/Canadian Postal Codes
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
REGEX TARDE
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
testwizardlog
PCRE (PHP <7.3)
a testwizard log extractor for my scripts.
Submitted by
anonymous
-
6 years ago
0
Email01
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
С НДС
Python
no description available
Submitted by
anonymous
-
6 years ago
0
Http url parser
PCRE (PHP <7.3)
parse http url into scheme, domain, uri, hash, (user port if exist)
Submitted by
anonymous
-
6 years ago
0
Без НДС
Python
no description available
Submitted by
anonymous
-
6 years ago
0
С НДС Newline
Python
no description available
Submitted by
anonymous
-
6 years ago
1
...
179
180
181
182
183
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
^
(
http:
\/\/
www
\.
|
https:
\/\/
www
\.
|
http:
\/\/
|
https:
\/\/
)?
[
a
-
z0
-
9
]
+
(
[
\-\.
]
{1}
[
a
-
z0
-
9
]
+
)*
\.
[
a
-
z
]
{2,5}
(
:
[
0
-
9
]
{1,5}
)?
(
\/
.
*
)?
$
/
gm
Open regex in editor
Description
no description available
Submitted by
anonymous
-
6 years ago