js如何提取匹配文章中的手机和电话号码?微信小程序vuejs

 

const content = "我的手机是13123456789,我的电话是022-12345678"
const phone = []
if (content.match(/1(3|4|5|7|8)\d{9}/g) || content.match(/0[0-9]{2,3}-\d{8,9}/g)) {
    const arr1 = content.match(/1(3|4|5|7|8)\d{9}/g)
    const arr2 = content.match(/0[0-9]{2,3}-\d{8,9}/g)
    phone.push(...arr1,...arr2)
}
console.log(phone) // ["13123456789","022-12345678"]

 

微信小程序开发交流qq群   829873465

承接微信小程序开发,扫码加微信

你可能感兴趣的:(微信小程序,小程序,javascript,vue.js)