1、替换全部斜杠为“-”
let str = "2020/9/4 11:32:28"
let newstr = str.replace(/\//g, '-');
console.log(newstr);//2020-9-4 11:32:28
2、判断字符串是否为空且不能全为空 【js判断是否有空格】
let str = ""
if(str.match(/^[ ]*$/)){
console.log("空格")
return
}
3、去除字符串中所有的html标签
let html = "<p>hello world</p>"
let newhtml = html.replace(/<[^>]+>/g,"");//let newhtml = html.replace(/<[^>]+>|&[^>]+;/g, "")
console.log(newhtml);//hello world
网友评论