I'm doing a registration form where people can register, in that I will be asking for thier email address's If i could put a regex
validation that captures any other emails
example:
xxx@gmail.com, or xxx@ yahoo.com, and only allow xxx@bat.ac.uk i could implement a system that sends an email to the registering person asking them to validate it. I know how to implement the email bit I'm just stuck at this validation part. hope this makes sense
Is there a way to modify the default email validation expression
\w+([-+.']\w+)@\w+([-.]\w+).\w+([-.]\w+)*