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