美文网首页
常用正则表达式整理

常用正则表达式整理

作者: Giraffe_00 | 来源:发表于2020-09-11 17:32 被阅读0次

    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
    

    相关文章

      网友评论

          本文标题:常用正则表达式整理

          本文链接:https://www.haomeiwen.com/subject/euzeektx.html