Could anyone please give a regular expression for jQuery validation on a home phone number which will force the following criteria:
- 11 Digits exactly
- Must begin with 0
- Must NOT begin with 07
I currently have a regex which forces 11 digits beginning with 07:
/^07\d{9}$/
This works fine for a mobile number but just need a slightly modified version for a land line.