Search code examples
iosobjective-ciphoneregexnsregularexpression

Regular expression which accept both email address and 10 digit phone number


I need an regular expression which accept 10 digit phone number and also email address with one input textfield.

Example :

Phonenumber: 1234567890

Emailaddress : somename@somecompany.com or somename@somecompany.in

Can any one advice me to get that regular expression. @KiranMac123


Solution

  • Use the below regex to match the 10 digit phone number or an email address.

    ^(?:\d{10}|\w+@\w+\.\w{2,3})$