I have an input field taking an email address:
<h:inputText value="#{register.user.email}" required="true" />
How can I validate the entered value as a valid email address using regex in JSF 2 / PrimeFaces?
|
I have an input field taking an email address:
How can I validate the entered value as a valid email address using regex in JSF 2 / PrimeFaces? |
||||
|
|
|
Here is how: Using it myself...
Daniel. |
|||||||
|
|
All regular expression attempts to validate the email format based on Latin characters are broken. They do not support internationalized domain names which were available since May 2010. Yes, you read it right, non-Latin characters are since then allowed in domain names and thus also email addresses. That are thus extremely a lot of possible characters to validate. Best is to just keep it simple. The following regex just validates the email format based on the occurrence of the
Again, this just validates the general email format, not whether the email itself is legit. One can still enter |
|||
|
|
|
Here's my version and it works well :
And i made a demo here |
|||
|
|