Displaying page
of
pages;
Items to
| Title |
Test
Details
Pattern Title
|
| Expression |
^07([\d]{3})[(\D\s)]?[\d]{3}[(\D\s)]?[\d]{3}$ |
| Description |
UK Mobile phone regular expression.
I usually run this against a telephone field to split out landlines and mobile numbers. |
| Matches |
07976444333 | 07956-514333 | 07988-321-213 |
| Non-Matches |
+44 07976444333 | 08956-444-444 |
| Author |
Rating:
Daren Salter
|
| Title |
Test
Details
Pattern Title
|
| Expression |
^((\+){0,1}91(\s){0,1}(\-){0,1}(\s){0,1}){0,1}98(\s){0,1}(\-){0,1}(\s){0,1}[1-9]{1}[0-9]{7}$ |
| Description |
The Regex validate the mobile numbers in India.
Gives flexibility to user to enter numbers in different format like
+919847444225, +91-98-45017381, 9844111116, 98 44111112, 98-44111116
###Enjoy REGEX### |
| Matches |
+919847444225 | +91-98-44111112 | 98 44111116 |
| Non-Matches |
+919800444225 | +947444225 | 44111116 |
| Author |
Rating:
Vathachira Joseph Bino
|
| Title |
Test
Details
Pattern Title
|
| Expression |
([0]{1}[6]{1}[-\s]*([1-9]{1}[\s]*){8})|([0]{1}[1-9]{1}[0-9]{1}[0-9]{1}[-\s]*([1-9]{1}[\s]*){6})|([0]{1}[1-9]{1}[0-9]{1}[-\s]*([1-9]{1}[\s]*){7}) |
| Description |
Matches dutch telephone numbers WITHOUT country code prefix
Tests on mobile numbers, 3 digits prefix city-codes and 4 digit prefix city codes.
* Disallows a 0 directly after a prefix
* Allows space or a - between prefix and telephonenumber
* Also allows space between telephone digits to compensate the nasty habit of making telphone numbers more readable |
| Matches |
06 539 439 99 | 023-123 1233 | 023 121 12 12 |
| Non-Matches |
06-539-439-99 | 05-75 46 30 50 |
| Author |
Rating:
Nico Lubbers
|
| Title |
Test
Details
Pattern Title
|
| Expression |
^((?:\+27|27)|0)(=72|82|73|83|74|84)(\d{7})$ |
| Description |
Verifies South African mobile numbers with or without the country code. |
| Matches |
+27832762842 | 27832762842 | 0832762842 |
| Non-Matches |
083 276 2842 |
| Author |
Rating:
Mpho Molahloe
|
| Title |
Test
Details
Pattern For WebCrawler to find contact details
|
| Expression |
[\+]{0,1}(\d{10,13}|[\(][\+]{0,1}\d{2,}[\13)]*\d{5,13}|\d{2,6}[\-]{1}\d{2,13}[\-]*\d{3,13}) |
| Description |
This is useful for finding contact numbers, or mobile numbers or phone numbers while crawling websites. |
| Matches |
123-12-1233 | (02717)230464 | +919427237800 | +9427237800 | 02717-230464 |
| Non-Matches |
23046 | 123456780123456790000 |
| Author |
Rating:
Kuleen Upadhyaya
|
| Title |
Test
Details
Mobile No Validation
|
| Expression |
^((\+)?(\d{2}[-]))?(\d{10}){1}?$ |
| Description |
This Pattern is to Validate Mobile Number with 10 digit Number and Countrycode as Optional. |
| Matches |
+91-9822345654,9822345654 |
| Non-Matches |
+923-9855777897,6463466 |
| Author |
Rating:
Amol Pande
|
| Title |
Test
Details
Indian Mobile Number
|
| Expression |
^([9]{1})([234789]{1})([0-9]{8})$ |
| Description |
This regular expression will verify all the moblie numbers in india |
| Matches |
9881060153 |
| Non-Matches |
8945121242 |
| Author |
Rating:
sourabh jain
|
| Title |
Test
Details
[email protected]
|
| Expression |
\d{10,12}@[a-zA-Z].[a-zA-Z].* |
| Description |
This is a basic/simple expression i have come out to check 10digit mobile number and then any valid email .... |
| Matches |
|
| Non-Matches |
|
| Author |
Rating:
Not yet rated.
shrinidhi
|
| Title |
Test
Details
Check Iranian's Mobile Numbers
|
| Expression |
(^(09|9)[1][1-9]\\d{7}$)|(^(09|9)[3][12456]\\d{7}$) |
| Description |
This Regular Expression Chack Matching Persian Mobile Numbers
It is Checking MCI,MTN Irancell and Talya Operators
For Example In C#.NET:
Regex.IsMatch(MobileNumber, "(^(09|9)[1][1-9]\\d{7}$)|(^(09|9)[3][12456]\\d{7}$)");
|
| Matches |
09122838473 | 9122838473 | 09369048504 |
| Non-Matches |
+989122838473 | 22248016 | 12345 |
| Author |
Rating:
Ali Delshad
|
| Title |
Test
Details
Mobile number of India
|
| Expression |
(\+91(-)?|91(-)?|0(-)?)?(9)[0-9]{9} |
| Description |
This expression will be useful to check mobile
number of India. This expression will check
various types of number like number in local
format or international number separated by
hyphen(-) or not.
|
| Matches |
+919123456789 | +91-9123456789 | 919123456789 | 09123456789 | 9123456789 |
| Non-Matches |
8123456789 | +91-912345678 | +9191234567890 |
| Author |
Rating:
Not yet rated.
Nandip Makwana
|
| Title |
Test
Details
India Phone Numbers
|
| Expression |
^((\+)?(\d{2}[-])?(\d{10}){1})?(\d{11}){0,1}?$ |
| Description |
India phone number, accept with optional +91 national code and 0 for land and mobile number prefix . Allows optional - after national code |
| Matches |
+91-9764544544 | 09764544544 | 01087656444 | +91-1087656444 |
| Non-Matches |
+91-01087656444 | +91-09764544544 | +9178786765652 |
| Author |
Rating:
Vishnu
|
| Title |
Test
Details
India Mobile Number
|
| Expression |
for mobile:^[0][1-9]{1}[0-9]{9}$ |
| Description |
India mobile number, accept 0 prefix |
| Matches |
09123456789 |
| Non-Matches |
none |
| Author |
Rating:
Not yet rated.
Sunny Raheja
|
| Title |
Test
Details
India Mobile Number with +91
|
| Expression |
^((\+){1}91){1}[1-9]{1}[0-9]{9}$ |
| Description |
In this Pattern +91 will be the prefix in the Mobile number(of 10 digits). |
| Matches |
+919123456789 |
| Non-Matches |
+91 9123456789,+91-9123456789.. like this |
| Author |
Rating:
Sunny Raheja
|
| Title |
Test
Details
italian mobile number
|
| Expression |
^(([+]|00)39)?((3[1-6][0-9]))(\d{7})$ |
| Description |
Check if the number is a valid italian mobile number. Note: even though 35X is non given yet, this regular expression consider it a valid number just in case it will be! |
| Matches |
+393319991220 ; 00393319991220 ; 3319991220 |
| Non-Matches |
393319991220 ; 331999122044 ; |
| Author |
Rating:
enzo contini
|
| Title |
Test
Details
Validate ZA Phone Numbers
|
| Expression |
^((?:\+27|27)|0)(\d{2})-?(\d{3})-?(\d{4})$ |
| Description |
Matches South African telephone/mobile numbers, with or without the country code. Can also include spaces or hyphens between values. Doesn't match brackets around the area code, but that would be easy to add in. Hope it helps someone... |
| Matches |
0111231234 | 011 123 1234 | 011-123-1234 | 0821231234 | +27821231234 | +2782-123-1234 | +2782 123 1234 | 27111231234 | 2711 123 1234 | 2711-123-1234 |
| Non-Matches |
(011)1231234 | (+2711) 123 1234 | (011) 123-1234 |
| Author |
Rating:
Rory Cottle
|
| Title |
Test
Details
Indonesian Cell Phone Number Validation
|
| Expression |
^((?:\+62|62)|0)[2-9]{1}[0-9]+$ |
| Description |
Validate Indonesian "Mobile Numbers Only" with or without the country code, also base on regular phone number format at http://id.wikipedia.org/wiki/Daftar_kode_telepon_di_Indonesia. This regex only allowed characters that accepted by mobile phone/sms gateway only :D |
| Matches |
+62817737669 | 62817737669 | 0817737669 | 6221995500 | 021995500 | 0401998866 |
| Non-Matches |
+817737669 | 817737669 | 00817737669 | 0817 737 669 | 0817-737-669 | 021-995500 |
| Author |
Rating:
Didi Yudhiarto walnutz.net
|
| Title |
Test
Details
UK Phone Number
|
| Expression |
^((\+44\s?\d{4}|\(?\d{5}\)?)\s?\d{6})|((\+44\s?|0)7\d{3}\s?\d{6})$ |
| Description |
Allows both mobile and landline UK Telephone Numbers. Allows either Brackets or international prefix. Allows spaces after international prefix and regional code. No brackets for mobile numbers. Please report any problems. Thanks |
| Matches |
01902123456 | 01902 123456 | (01902)123456 | (01902) 123456 | +441902123456 | +441902 123456 | +44 1902123456 | +44 1902 123456 | 07807123456 | 07807 123456 | +447807123456 | +447807 123456 | +44 7807123456 | +44 7807 123456 |
| Non-Matches |
11902123456 | (+441902)123456 | 441902123456 | (078)07123456 |
| Author |
Rating:
Not yet rated.
Jay Anslow
|
| Title |
Test
Details
Indian Mobile numbers
|
| Expression |
^([9]{1})([234789]{1})([0-9]{8})$ |
| Description |
Its 10 digits Indian Mobile Number validation. |
| Matches |
9829373514 |
| Non-Matches |
919829373514, 09829373514 |
| Author |
Rating:
Gaurav Agrawal
|
Displaying page
of
pages;
Items to