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