中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
如何判断传入的电话号码格式是否正确。
微信扫码分享
import { i18n } from '@kit.LocalizationKit'; /** * 判断传入的电话号码格式是否正确。 * @param phone * country string 表示电话号码所属国家或地区代码。 * options PhoneNumberFormatOptions 电话号码格式化对象的相关选项。默认值:NATIONAL。 * @returns */ static isPhone(phone: string, country: string = "CN", option?: i18n.PhoneNumberFormatOptions): boolean { let phoneNumberFormat: i18n.PhoneNumberFormat = new i18n.PhoneNumberFormat(country, option); return phoneNumberFormat.isValidNumber(phone); }