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...
1
phones
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
^(?:\d+[a-z]|[a-z])(?:\^\d+)(?:[\+|\-])(?:\d+[a-z])(?:[\+|\-])(?:\d+\=\d+)
Golang
for quadratic equations ||ax^2+bx+c=d||
Submitted by
anonymous
-
4 years ago
1
USD regex
PCRE (PHP <7.3)
Regex to match USD currency in a text
Submitted by
anonymous
-
4 years ago
1
Extract Dirty `href` Values in HTML
PCRE (PHP <7.3)
Even though using a delimiter within a string, without escaping it, is an illegal character, sometimes this still happens and we need to extract a HTML value.
Submitted by
Sean O'Mahoney
-
4 years ago
1
password with at least 1 special character
PCRE (PHP <7.3)
This regex is to describe the password which has at least 7 characters (OC) with at least a special one (SC). Of course, we know the SC may be in the first, second .... or last of the password. Also, we know the password maybe bigger than just 8. so I wrote the RE to accept any character (AC) from !...
Submitted by
EMAM1999
-
4 years ago
1
NS:Task2
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Extract domain from URL
PCRE (PHP <7.3)
'www.xakep.ru' === xakep 'http://github.com/carbonfive/raygun' === github 'https://www.cnet.com' === cnet 'xewveqmwcz90sl64.co/' === xewveqmwcz90sl64
Submitted by
anonymous
-
4 years ago
1
Valid URL RegEx
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
FIND NUMBERS IN STRING
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Group 1 und Group 2 erkennen
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Pesquisa palavras inicio e fim
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Number with format
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Account Password Regex
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
token
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
Get table rows
Python
no description available
Submitted by
anonymous
-
4 years ago
1
Match table head and body
Python
no description available
Submitted by
anonymous
-
4 years ago
1
URL Domain Extractor
ECMAScript (JavaScript)
Extracts and returns the domain name from a given URL.
Submitted by
anonymous
-
4 years ago
1
Domain from URL
PCRE (PHP <7.3)
Matches everything before after // or www and before a period. If needed, replace the matched elements with blanks.
Submitted by
anonymous
-
4 years ago
1
FR Anti Ancient Gene Search
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
expression for mike
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
1
...
299
300
301
302
303
...
900
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
^
\$
(
\d
{1,3}
(
\,
\d
{1,3}
)*
(
\.
\d
{0,3}
)?
)
/
gm
Open regex in editor
Description
Regex to match USD currency in a text
Submitted by
anonymous
-
4 years ago