HarmonyOSBaseLibs/src/main/ets/utils/ValidatorHelper.ets
徐勤民 6ef4ef6d27 init
2024-05-07 17:41:21 +08:00

14 行
258 B
Plaintext

/**
* 常用正则验证
*/
export class ValidatorHelper {
/**
* 是否为手机号
* @param phone
* @returns
*/
public static isPhone(phone: string) {
let regexp: RegExp = new RegExp('^1[0-9]{10}$');
return regexp.test(phone)
}
}