JavaScript 字符串函数扩充
/*
******************************************
字符串函数扩充 (StringEx.js)
******************************************
*/
//移除两边空白
String.prototype.Trim = function() {
return this.replace(/(^\s*)|(\s*$)/g, "");
}