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
Use the below regex to match the 10 digit phone number or an email address.
^(?:\d{10}|\w+@\w+\.\w{2,3})$