Hello.
I need to validate a email address the best way, and I need to include some danish characters:
Æ Ø Å
æ ø å
My current regex is:
\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*
How to incorporate the extra letters, and is there any optimizing that can be done to ensure the best handling of the e-mail address?