Please enable JavaScript to use regex101
Regular
Expressions
101
Support Regex101
Social
Info
Regex Editor
Community Patterns
Account
Regex Quiz
Settings
Order By
Most Recent
Most upvotes
Most downvotes
Highest Score
Lowest Score
Relevance
Filter by Flavor
PCRE2 (PHP)
ECMAScript (JavaScript)
Python
Golang
Java
.NET 7.0 (C#)
Rust
PCRE (Legacy)
Sponsors
There are currently no sponsors.
Become a sponsor today!
Community Patterns
Search among 340 community submitted regex patterns...
0
US Phone Number
Created
·
2019-09-04 18:44
Flavor
·
PCRE (Legacy)
Phone Number from the USA and similar countries using the a single-digit country code (optionally).
Submitted by
Timothy Stam
0
Secure Phone Number
Created
·
2019-09-23 19:49
Flavor
·
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
0
WhatsappMsgParser
Created
·
2019-10-09 15:09
Flavor
·
Python
This Regex parse whats-app messages to 4 groups: Group1- Date (dd/mm/yyyy) Group2- Time (hh:mm) Group3- Author/Sender (name or phone number) Group4- Chat (actual chat data)
Submitted by
anonymous
0
Phone number
Created
·
2019-11-03 14:31
Flavor
·
PCRE (Legacy)
Regex to group phone numbers.
Submitted by
anonymous
0
phone number
Created
·
2019-11-26 09:25
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Phone Numbers / Fax Numbers
Created
·
2019-12-03 19:51
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
phone number*
Created
·
2019-12-05 15:26
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Indonesia Phone Number
Created
·
2019-12-13 12:09
Flavor
·
ECMAScript (JavaScript)
Remove the country code or zero leading for Indonesia phone number This regex only read numeric, didn't include any symbol like '+'
Submitted by
Blackjack100
0
Match Brazilian phone number
Created
·
2019-12-24 14:19
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Persian Phone Number
Created
·
2020-01-25 08:34
Flavor
·
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
0
Europe - France - Phone Number
Created
·
2020-01-30 20:54
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Phone Numbers / Fax Numbers
Created
·
2020-01-30 21:29
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Europe - Cyprus - Phone Number
Created
·
2020-01-30 21:36
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Europe - Slovenia - Phone Number
Created
·
2020-01-30 21:53
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
phone number validator
Created
·
2020-03-17 23:17
Flavor
·
ECMAScript (JavaScript)
no description available
Submitted by
anonymous
0
phone number
Created
·
2020-03-21 02:23
Flavor
·
ECMAScript (JavaScript)
An extremely complete regex, that...
Submitted by
@thegamerbr1
0
phone numbers to links
Created
·
2020-04-21 10:04
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Canadian Phone Number Validator
Created
·
2020-05-04 14:51
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
Phone Number
Created
·
2020-07-24 21:37
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
0
US Phone Number validation
Created
·
2020-10-07 02:30
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
Previous page
1
2
3
4
5
6
…
17
Next page
Community Library Entry
0
Regular Expression
Created
·
2018-12-04 21:46
Flavor
·
PCRE (Legacy)
/
^
(?=
(?:
\D
*
.\D
*
){10,15}
$
)
\+
?
\d
{1,4}?
[
-.
\x20
]
?
\(
?
\d
{1,3}?
\)
?
[
-.
\x20
]
?
\d
{1,4}
[
-.
\x20
]
?
\d
{1,4}
[
-.
\x20
]
?
\d
{1,9}
$
/
gm
Open regex in editor
Description
Detects and validates most of the phone numbers all over the world
Submitted by
Aditya Joshi