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
Postal Code FR
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Phone regex for => (789) 456-1230
PCRE (PHP <7.3)
(789) 456-1230
Submitted by
anonymous
-
4 years ago
0
bevprog path matching
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
Input Validation - Stack Overflow
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
normalize-space
Python
Remove extra space in between text, but not in quoted text
Submitted by
anonymous
-
4 years ago
0
Dice roll notation
ECMAScript (JavaScript)
Map operator, constants, number of dice, number of faces, exploding/imploding and selective dice notations
Submitted by
anonymous
-
4 years ago
0
Ignore Text in Quotes
Python
It will only pick thet matching text outside the quotes i.e ', "
Submitted by
anonymous
-
4 years ago
0
number(,) pattern
Python
still in progress
Submitted by
anonymous
-
4 years ago
0
US state
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
number
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
acao
PCRE (PHP <7.3)
texto de visao
Submitted by
anonymous
-
4 years ago
0
Xpath Local Name Swapper
Python
replace all element with their local-name in xpath (so that namespace do not matters at all)
Submitted by
anonymous
-
4 years ago
0
Todo lo que no sea numero
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
QLAB cue
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
Token NUM - Atividade T11
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
pack shelves
Golang
no description available
Submitted by
anonymous
-
4 years ago
0
Currency Format for EU
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
4 years ago
0
Joanne names
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
4 years ago
0
REGEX if Field is 0
Python
no description available
Submitted by
anonymous
-
4 years ago
0
Check roundup value for invoice
PCRE (PHP <7.3)
By using this regex, we can check roundup values which is used in billing. Valid results are: 1) -0.15 2) 1.11 3) 9.99 ...
Submitted by
anonymous
-
4 years ago
1
...
693
694
695
696
697
...
900
Community Library Entry
1
Regular Expression
PCRE (PHP <7.3)
/
(?:
(?<scheme>
https
?
)
:
\/\/
)?
(?<hostname>
.
+
?
)
(?:
\/
(?<path>
.
*
?
)
)?
(?:
\?
(?<parameter>
.
*
?
)
)?
(?:
#
(?<fragment>
.
*
)
)?
$
/
i
Open regex in editor
Description
no description available
Submitted by
Mustafa Talaeezadeh Khouzani
-
8 years ago