I am using tapestry 4 on my web application. I have tapestry validating my email address field. According to the tapestry documentation it uses regex to validate the email addresses
^\w[-._\w]*\w@\w[-._\w]*\w\.\w2,6$
But when I enter an email address that ends with .cat
or anything similar the validation catches an error and it will not save the email address.
Does anyone know why this is happening as I am not familiar with regex?