public static bool IsMobilePhone(string input) { Regex regex = new Regex("^1\\d{10}$"); return regex.IsMatch(input); }