美文网首页
过滤字符串中的空格

过滤字符串中的空格

作者: 木利 | 来源:发表于2018-07-28 10:21 被阅读0次
    //过滤字符串中的空格
    function Trim(str) {
         var result;
        
         result = str.replace(/(^\s+)|(\s+$)/g,"");
         result = result.replace(/\s/g,"");
         return result;
    }

    相关文章

      网友评论

          本文标题:过滤字符串中的空格

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