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
Matching Numeric Ranges with a Regular Expression 4
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 4
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 6
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 7
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 8
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 9 My solution
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 9
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Regex for comments.
PCRE (PHP <7.3)
"Comments" surrounded by /* and / without an inner */ unless it is surrounded by "". ex. /a"/"b/ is in the language.
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 10 My solution
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 10
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 11 My solution
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Matching Numeric Ranges with a Regular Expression 11
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Remove anything but float and integer
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Phone Number
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
Pull text-align value from HTML markup
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
i.imgur.com Link matcher
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
Client ID matcher w/ nickname allowance
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
-
6 years ago
0
URI start with
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
href harmonisation
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
0
www-urls without protocol and not in <a>-tag
PCRE (PHP <7.3)
no description available
Submitted by
anonymous
-
6 years ago
1
...
218
219
220
221
222
...
900
Community Library Entry
0
Regular Expression
PCRE (PHP <7.3)
/
(
[
A
-
z
\d
-
\/
_.
]
+
)?
/
g
Open regex in editor
Description
regex to check for valid URL String.
Accept:
A-z Characters.
Numbers
"-", "_", ".", "/" Characters.
Submitted by
anonymous
-
5 years ago