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 community submitted regex patterns...
0/512
-2
phone number
Created
·
2016-07-19 04:29
Flavor
·
Python
An extremely complete regex, that... Accepts international phones and most of regional phone numbers; Accepts phone numbers with/without "+", with/without space or "-" in the middle of the phone, and more. Gets groups of all important data of the phone number (local code, country code and the phone number itself)
Submitted by
@thegamerbr1
-2
Brazillian Telephone Number validator
Created
·
2015-10-06 13:48
Flavor
·
PCRE (Legacy)
A basic validator for BR phone numbers
Submitted by
Yemolai
-2
French phone number
Created
·
2014-05-01 04:20
Flavor
·
PCRE (Legacy)
no description available
Submitted by
Benoit Anastay
-1
Phone number regex
Created
·
2020-12-15 17:25
Flavor
·
PCRE (Legacy)
Original regex at https://www.regextester.com/103299. I added a check for US country code in front of the area code
Submitted by
anonymous
-1
Extract brazilian DDD and phone number
Created
·
2018-04-03 15:06
Flavor
·
PCRE (Legacy)
Extract brazilian DDD and phone number
Submitted by
Anderson Rodrigues
-1
Phone numbers USA
Created
·
2018-04-03 09:49
Flavor
·
PCRE (Legacy)
no description available
Submitted by
anonymous
-1
phone number to match all cases of phone number all over the world
Created
·
2016-06-13 03:50
Flavor
·
PCRE (Legacy)
i.e: (555)555-5555 (OK) 5555555555 (ok) 555.555.5555 (ok) 55555555556 (ok) +184 (555)555-5555 (ok) feel free to email me if you can find case that not match at nmquoc89@gmail.com
Submitted by
Quoc Kenny Nguyen
-1
Phone number validator
Created
·
2015-09-28 09:35
Flavor
·
Python
Validates all possible international phone number formats. Icludes almoust all of the international call prefixes, all of the differing lenghts of country codes. The parts of number will always be recognised correctly. Additionally you could add limitations of the phone number's lenght
Submitted by
Ādams Muzikants
0
Bangladeshi phone numbers
Created
·
2023-07-05 18:44
Updated
·
2023-07-05 18:56
Flavor
·
ECMAScript (JavaScript)
Matches all Bangladeshi SIM numbers
Submitted by
Mushfiq Talha
0
Bangladeshi Phone Number Matching Regex
Created
·
2023-06-18 11:58
Flavor
·
PCRE2 (PHP)
Bangladeshi Any Phone Number Validated preg_match() in php function
Submitted by
anonymous
0
Egyptian Phone Numbers
Created
·
2023-05-28 06:37
Updated
·
2023-05-28 07:27
Flavor
·
ECMAScript (JavaScript)
Validate Egyptian phone numbers ... Read More (Arabic)
Submitted by
Mahmoud Mostafa
0
Regular expression Regix for Iranian mobile phone numbers
Created
·
2023-05-26 15:48
Flavor
·
PCRE2 (PHP)
Regular expression Regix for Iranian mobile phone numbers
Submitted by
anonymous
0
Suriname phone number
Created
·
2023-05-03 19:27
Flavor
·
PCRE2 (PHP)
So the regular expression ensures that the phone number starts with "+597", followed by either a 7 or 8, and then six more digits. This will match all three phone numbers you provided as examples.
Submitted by
Kenny
0
NIgerian Phone Numbers RegEx Validation
Created
·
2023-05-02 15:57
Flavor
·
PCRE2 (PHP)
This RegEx validates whether a number is in the standard valid Nigerian mobile number format or not.
Submitted by
funmitoblessed
0
Turkish Phone Number
Created
·
2023-04-23 11:48
Flavor
·
PCRE2 (PHP)
Supported Formats +90 or 0 are optional. (ddd)ddd-dd-dd (ddd)ddd-dddd (ddd)ddddddd (ddd) ddd-dd-dd (ddd) ddd-dddd (ddd) ddddddd (ddd)ddd dd dd (ddd)ddd dddd (ddd)ddddddd (ddd) ddd dd dd (ddd) ddd dddd (ddd) ddddddd (ddd)-ddd-dd-dd (ddd)-ddd-dddd (ddd)-ddddddd (ddd) -ddd-dd-dd (ddd) -ddd-dddd (ddd) -ddddddd ddd-ddd-dd-dd ddd-ddd-dddd ddd ddd-dd-dd ddd ddd-dddd ddd-ddd dd dd ddd-ddd dddd ddd ddd dd dd ddd ddd dddd
Submitted by
Fatih Bahceci
0
Phone number finder
Created
·
2023-04-13 07:20
Flavor
·
Python
Finds a phone number.
Submitted by
anonymous
0
All Phone Number in VietNam in a real project
Created
·
2023-04-08 19:15
Flavor
·
ECMAScript (JavaScript)
This is data from many years and my boss want me to extract all the number in spreadsheet, it's about 14,000 records
Submitted by
Le Nam Son
0
Phone number Malaysia RegEx
Created
·
2023-04-03 05:09
Flavor
·
PCRE (Legacy)
A regular expression of Malaysian phone number I made to be used on a project using flutter.
Submitted by
anonymous
0
Kyivstar phone number
Created
·
2023-03-19 17:11
Flavor
·
Java
Kyivstar phone number
Submitted by
milka_vlad
0
Regex for matching French Phone Numbers
Created
·
2023-03-13 19:32
Flavor
·
PCRE2 (PHP)
This is an expression that will match French Phone numbers You can modify this expression to help you match your needs.
Submitted by
anonymous
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