Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Could anyone tell me what RegEx would work to validate an international phone number including white space between the numbers and also allowing for these chars: - ( ).

The amount of numbers in the string is not too important, I would just like the user to be able to type something like either example 1 or 2 if they wish:

Example:

  1. +44 (0) 207 111 1111

  2. 442071111111

I have already read through and tested the posted answers to some similar questions to the best of my understanding but so far none of them are working for me the way I want them to.

Please can someone help me out with a clear explanation of how the above should be written for validation?

Many thanks to anyone who can help.

share|improve this question
Example 1 does not match your description. The description doesn't seem to allow a leading + – Jan Dvorak Feb 1 at 4:59
see the link given below for guidance stackoverflow.com/questions/6918185/… stackoverflow.com/questions/6195458/… these questions have the same problem as of yours. so it will give you the solution of your problem. – adeel iqbal Feb 1 at 5:01
Sorry people I missed the '+' in my description. I would like to include this if poss. – user2031340 Feb 1 at 5:01

2 Answers

try this 
 $("#phone").blur(function () {
            var regexp = /^[\s()+-]*([0-9][\s()+-]*){6,20}$/
            var no = $("#phone").val();
            if (!regexp.test(no)&& no.length<0) {
                alert("Wrong phone no");
            }

        });

<input type="text" id="phone"/>
share|improve this answer
I guess the only interesting part here is the regex itself. – Jan Dvorak Feb 1 at 5:05
My phone number is 112 and your regex claims it's not correct. – Jan Dvorak Feb 1 at 5:07
now check,its working or not – Sagar patel Feb 1 at 5:13
Thanks for your interest and help man. Below is the code I have so far. Can i not just change the check function to allow for what I want? What do you think? – user2031340 Feb 1 at 5:20
where is your code? – Sagar patel Feb 1 at 5:23
show 5 more comments
/*
@isValidUSPhoneFormat function will check valid US Format
    Allowed US Format
(123) 456-7890
123-456-7890
123.456.7890
1234567890
(734) 555.1212
*/   

    function isValidUSPhoneFormat(elementValue){  
            var phoneNumberPattern = /^[(]{0,1}[0-9]{3}[)]{0,1}[-\s.]{0,1}[0-9]{3}[-\s.]{0,1}[0-9]{4}$/;  
            if(phoneNumberPattern.test(elementValue) == false)
            {
                 var phoneNumberPattern = /^(\()?\d{3}(\))?(.|\s)?\d{3}(.|\s)\d{4}$/; 
                 return phoneNumberPattern.test(elementValue);   
            }
            return phoneNumberPattern.test(elementValue);  
        }

May this will help you to understand JavaScript RegEx..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.