JS 提取字符串的手机号或者邮箱,正则匹配
JS 提取字符串的手机号或者邮箱,正则匹配
function handlerStr(str) {
let newStr = null;//返回值
const phoneReg = /(1[0-9]{2,10})|([0-9]{3,4})?[0-9]{7,8}|[\d\w]+\b@[a-zA-ZA-z0-9]+.[a-z]+/g;//匹配手机号或者固话,邮箱
const num = str.replace(/\s|[(]|[)]|[(]|[)]|[-]*/g, ‘’);//去除字符串中所有空格、小括号和横杠
原创
2021-10-13 16:04:55 ·
2259 阅读 ·
0 评论