JS 去除左右空格
程序员文章站
2022-07-12 19:00:26
...
//去除左右空格
String.prototype.trim = function(){
return this.replace(/(^\s*)|(\s*$)/g,"");
}
String.prototype.trim = function(){
return this.replace(/(^\s*)|(\s*$)/g,"");
}