Return whether input matches regex of telephone number.
static bool isTel(String input) { return matches(regexTel, input); }