I have specific rules for local and domain part of email. Email local part: -Latin letters are allowed: A to Z and a to z -Number are allowed: 0 to 9 -Following special characters are allowed: !#$%&'*+-/=?^_`{|}~ -Dot “.” is allowed but must not be the first or the last character and two dots must not appear consecutively. -Following Latin characters with diacritics are allowed: àèìòùÀÈÌÒÙáéíóúýÁÉÍÓÚÝâêîôûÂÊÎÔÛãñõÃÑÕäëïöüÿÄËÏÖÜŸçÇߨøÅ寿œ -Other characters are not allowed -64 characters length maximum
Email domain must match the requirements for a hostname, a list of dot-separated DNS labels, each label being limited to a length of 63 characters and with the following rules: -Latin letters are allowed: A to Z and a to z -Number are allowed: 0 to 9 -Hyphen “-“ is allowed but must not be the first or the last character -Following Latin characters with diacritics are allowed: àèìòùÀÈÌÒÙáéíóúýÁÉÍÓÚÝâêîôûÂÊÎÔÛãñõÃÑÕäëïöüÿÄËÏÖÜŸçÇߨøÅ寿œ -Other characters are not allowed -Total email address: 256 characters length maximum
I am using below regex. Could anyone verify and suggest to make it short if possible.
/^[a-zA-ZA-zÀ-ÖØ-öø-ÿäëïöüÿÄËÏÖÜŸçÇߨøÅ寿œ0-9!#$%&'+/=?^_{|}~-]+(?:\.[a-zA-ZÀ-ÖØ-öø-ÿäëïöüÿÄËÏÖÜŸçÇߨøÅ寿œ0-9!#$%&'*+\/=?^_
{|}~]+)@(?:a-zA-ZA-zÀ-ÖØ-öø-ÿäëïöüÿÄËÏÖÜŸçÇߨøÅ寿œ0-9?.)+a-z0-9?$/;
Thanks in Advance