Return whether input matches regex of simple mobile.
static bool isMobile(String input) { return matches('^[1]\\d{10}\$', input); }