Email validation- characters length before @ and before dot
问题 I use the following regex pattern for validating the email address that works fine, BUT I need to validate the length of characters before @ , which should NOT be less than 4 characters. The same rule I should put for the length of characters after @ and before dot . . For example, this email address is NOT valid: a@b.c However, this one should be valid: abcd@abcd.com How can I do it? Here is my current attempt: <ui:define name="validation-tag"> <f:validateRegex pattern="([\w\.-]*[a-zA-Z0-9_]