Return whether input matches regex of simple mobile. 判断输入字符串是否符合手机号
bool isMobileSimple(String input) { return matches(RegexConstants.REGEX_MOBILE_SIMPLE, input); }