string 去除空格

Posted enid0044

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string 去除空格相关的知识,希望对你有一定的参考价值。

/**
 * 去除空格
 * @param  {str}
 * @param  {type} 
 *       type:  1-所有空格  2-前后空格  3-前空格 4-后空格
 * @return {String}
 */
trim (str, type) {
    type = type || 1
    switch (type) {
        case 1:
            return str.replace(/\s+/g, "");
        case 2:
            return str.replace(/(^\s*)|(\s*$)/g, "");
        case 3:
            return str.replace(/(^\s*)/g, "");
        case 4:
            return str.replace(/(\s*$)/g, "");
        default:
            return str;
    }
}

  

以上是关于string 去除空格的主要内容,如果未能解决你的问题,请参考以下文章

string 去除空格

在 Python 中用逗号分隔并去除空格

php去除html标签及空格回车

去除string两边的空格

js中对String去空格

js中对String去空格