HarmonyOSBaseLibs/src/main/ets/utils/ValidatorHelper.ets

14 行
258 B
Plaintext

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