Created
November 8, 2019 05:02
-
-
Save valterh4ck3r/01b0e1525bbcae6340dcd38c5d42c322 to your computer and use it in GitHub Desktop.
Validate Email Flutter
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
static bool isEmail(String em) { | |
String p = 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,}))$'; | |
RegExp regExp = new RegExp(p); | |
return regExp.hasMatch(em); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment