Last active
March 23, 2021 15:42
-
-
Save loonix/10b88ea28afe568d0c19e3f1346c76ca to your computer and use it in GitHub Desktop.
[Dart Email Regex]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// Needed to make a regex that matched my criterias, there are a few regex already made that do not take into acount domais that end in .services | |
/// for international email please have a look at this regex https://rubular.com/r/bqNZ0WT0RMSaGV | |
main() async { | |
_checkEmail("a@a"); // false | |
_checkEmail("[email protected]"); // false | |
_checkEmail("s@asd,com"); // false | |
_checkEmail("[email protected],uk"); // false | |
_checkEmail("[email protected]"); // true | |
_checkEmail("[email protected]"); // true | |
_checkEmail("[email protected]"); // true | |
_checkEmail("[email protected]"); // true | |
_checkEmail("[email protected]"); // true | |
} | |
/// in case you need the email regex to support international emails replace the regexp with | |
/// RegExp(r'^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$'); | |
_checkEmail(email){ | |
bool emailValid = RegExp(r"^(?=^.{6,255}$)([0-9a-zA-Z]+[-._+&])*[0-9a-zA-Z]+@([-0-9a-zA-Z]+[.])+[a-zA-Z]{2,85}$").hasMatch(email); | |
print("${email.toString()} - ${emailValid.toString()}"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment