Return whether input matches regex of email.
static bool isEmail(String input) { return matches(regexEmail, input); }