#Phone Number Validation

I have a phone number field in my signup form. I’ve set the input type to ‘numbers’ but user can enter special characters also. How can I validate this before form submission?

There are plugins for web, but not for Mobile.

Anybody successfully done this, please guide.

Use a conditional and enter a regex for validation. If you don’t know how to use regex, you can have it created by chat gpt..

regex is your friend :grinning_face:

I was using regex but with the wrong operator. Now it’s sorted. Thanks

1 Like

Happy to hear it!