-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
isEmail feature #2524
Comments
Could you share the text contents of the PDF in this file? Or as image? |
this is emails addresses list (You can try yourself): -- invalid addresses from Wikipedia resource -- valid addresses from Wikipedia resource -- validated addresses from the UASG resource with corresponding index as id |
I can found a good regex for utf8 user email checking and quoted user email checking you can try these. const emailUserUtf8Part = /^(?!\d)(?!...)[a-z\d!#$&'+-/=?^_`{|}~%.\u00A1-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+$/iu; const quotedEmailUserUtf8 = /^([\s\x01-\x08\x0b\x0c\x0e-\x1f\x7f\x21\x23-\x5b\x5d-\x7e\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]|(\[\x01-\x09\x0b\x0c\x0d-\x7f\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))*$/iu; |
Results-of-ValidatorJS.pdf
There is a problem in validation of some email addresses
You can see the joined document. it's a test of your isEmail validation script.
The text was updated successfully, but these errors were encountered: