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

js中移除字符串空格

作者: swallowsonny | 来源:发表于2022-08-22 11:21 被阅读0次

    1、移除字符串开头空格

    str.replace(/(^\s*)/g, '')
    

    2、移除字符串结尾空格

    str.replace(/(\s*$)/g, '')
    

    3、移除字符串开头结尾空格

    str.replace(/(^\s*)|(\s*$)/g, '')
    

    4、移除字符串结尾空格

    str.replace(/\s+/g, '')
    

    相关文章

      网友评论

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

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