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.

Currently I have an expression:

numMatches = phone.match(/[^\d\s\-]/gi);

if (numMatches != null) {
    alert(invPhnNo);
}   

This gives an alert if any characters other than digit, space and hyphen are entered. But still accepts if only hyphen and spaces are given without a single digit. Now i would want it to alert if atleast a digit is not there. So a digit is mandatory. Can have zero or more spaces and hyphen and no other characters.

Can anyone suggest an approach to this?

share|improve this question

1 Answer

You could either use the standard regexp refered to by Trever, but you could also simply run another .match(/\d+/g) on the string and if both succeed, you can be sure that it complies with your requirements and also has at least one digit.

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.