I have this code to validate an email address and I think it works fine for normal circumstances
<h:inputText id="email" value="#{myBean.email}"
required="true">
<f:validateRegex pattern="[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,4}" />
</h:inputText>
But if somebody enters this sample email
lòmbardi.Çorneliö@mymail.com
..the regex fails.
Question, is there a way to have a validator allows other ascii characters?
Thanks.