I have seen other similar answers and have incorporated some of them but still not quite getting it. Please, the javascript regex below can validate the following emails:
1.θσερ@gmail.com but not : 2.θσερ@εχαμπλε.ψομ
js regex:
^([\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF\w-\.+]+)@(([\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{1,3}\.)|(\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,10}|[0-9]{1,3}|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])(\]?)$
anyone willing to point me to why it fails for the second email?
Thanks