JS trim去除字符串收尾指定字符

Posted 者行孙某

tags:

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

String.prototype.trim = function (char, type) {
if (char) {
if (type == ‘left‘) {
return this.replace(new RegExp(‘^\\‘+char+‘+‘, ‘g‘), ‘‘);
} else if (type == ‘right‘) {
return this.replace(new RegExp(‘\\‘+char+‘+$‘, ‘g‘), ‘‘);
}
return this.replace(new RegExp(‘^\\‘+char+‘+|\\‘+char+‘+$‘, ‘g‘), ‘‘);
}
return this.replace(/^\s+|\s+$/g, ‘‘);
};


// 去除字符串首尾的全部空白
var str = ‘ Ruchee ‘;
console.log(‘xxx‘ + str.trim() + ‘xxx‘); // xxxRucheexxx


// 去除字符串左侧空白
str = ‘ Ruchee ‘;
console.log(‘xxx‘ + str.trim(‘ ‘, ‘left‘) + ‘xxx‘); // xxxRuchee xxx


// 去除字符串右侧空白
str = ‘ Ruchee ‘;
console.log(‘xxx‘ + str.trim(‘ ‘, ‘right‘) + ‘xxx‘); // xxx Rucheexxx


// 去除字符串两侧指定字符
str = ‘/Ruchee/‘;
console.log(str.trim(‘/‘)); // Ruchee


// 去除字符串左侧指定字符
str = ‘/Ruchee/‘;
console.log(str.trim(‘/‘, ‘left‘)); // Ruchee/


// 去除字符串右侧指定字符
str = ‘/Ruchee/‘;
console.log(str.trim(‘/‘, ‘right‘)); // /Ruchee

以上是关于JS trim去除字符串收尾指定字符的主要内容,如果未能解决你的问题,请参考以下文章

php trim函数去除两端指定字符串

JS中如何去除字符串的空格

JS --- trim() 函数

怎么去除一个字符串的前后空格

oracle中怎样去除字符的前后空格

JS去除字符串前后空格的几种方法