美文网首页
js 去除字符串空格

js 去除字符串空格

作者: hi文邵 | 来源:发表于2018-12-26 10:47 被阅读0次

    str.replace(/\s/g,"")

    例如:var str = '12  3'

    console.log(str.replace(/\s/g,""))   // 结果为 123

    相关文章

      网友评论

          本文标题:js 去除字符串空格

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