首页 > 代码库 > js 去除string 两边的空白

js 去除string 两边的空白

String.prototype.trim=function() {

return this.replace(/(^\s*)|(\s*$)/g,‘‘);
}

var str=" test ";
alert("["+str+"]"); // [ test ]
alert("["+str.trim()+"]"); // [test]

js 去除string 两边的空白