Answers for "match regex for email flutter"

9

dart regex for email

var email = "[email protected]"
bool emailValid = RegExp(r"^[a-zA-Z0-9.a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]+@[a-zA-Z0-9]+.[a-zA-Z]+").hasMatch(email);
Posted by: Guest on May-12-2020
0

email validation regex in flutter

var email = "[email protected]"
bool emailValid = RegExp(r"^[a-zA-Z0-9.a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]+@[a-zA-Z0-9]+.[a-zA-Z]+").hasMatch(email);
Posted by: Guest on February-01-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language