去掉字符串左右两边的空白字符和去掉字符串中所有的空白字符

1、在String的原型上实现去掉字符串左右两端的空白字符
String.prototype.fntrim = function(){
return this.trim();//去掉字符串左右两边的空白字符
//用正则:return this.replace(/(^\s+)|(\s+$)/g,"")
}
2.在String的原型上实现去掉字符串的所有空白字符;
String.prototype.fnTrimAll =function(){
return this.replace(/\s/g/,"");
}
var haha =" 前 端 小菜鸡 ";

console.log(haha.fntrim());
console.log(haha.fnTrimAll)

你可能感兴趣的:(去掉字符串左右两边的空白字符和去掉字符串中所有的空白字符)