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 3,580 community submitted regex patterns...
72
Regex for telephone numbers all over the world
Recommended
ECMAScript (JavaScript)
Detects most of the phone numbers all over the world
Submitted by
Aditya Joshi
-
11 years ago
(Last modified a year ago)
87
Password Validation
ECMAScript (JavaScript)
Checks that a password has a minimum of 6 characters, at least 1 uppercase letter, 1 lowercase letter, and 1 number with no spaces.
Submitted by
Christian Klemp
-
9 years ago
107
ECMAScript/JavaScript trim
ECMAScript (JavaScript)
Trim leading and trailing whitespace from a string.
Submitted by
fp
-
11 years ago
(Last modified 3 months ago)
1
...
177
178
179
Community Library Entry
16
Regular Expression
ECMAScript (JavaScript)
/
^
(
(
https
?
:
)
(
\/\/\/
?
)
(
[
\w
]
*
(?:
:
[
\w
]
*
)?
@
)?
(
[
\d\w
\.
-
]
+
)
(?:
:
(
\d
+
)
)?
)?
(
[
\/\\
\w
\.
()-
]
*
)?
(?:
(
[
?
]
[^
#
]
*
)?
(
#
.
*
)?
)*
/
gmi
Open regex in editor
Description
general purpose HTTP URL regex
Submitted by
Miguel Castillo @manchagnu
-
9 years ago