/*字符串去除空格*/String.prototype.Trim = function() { return this.replace(/(^\s*)|(\s*$)/g, "");}String.prototype.LeftTrim = function() { return this.replace(/(^\s*)/g, "");}String.prototype.RightTrim = function() { return this.replace(/(\s*$)/g, "");}
本文共 307 字,大约阅读时间需要 1 分钟。
/*字符串去除空格*/String.prototype.Trim = function() { return this.replace(/(^\s*)|(\s*$)/g, "");}String.prototype.LeftTrim = function() { return this.replace(/(^\s*)/g, "");}String.prototype.RightTrim = function() { return this.replace(/(\s*$)/g, "");}
转载于:https://www.cnblogs.com/YuanSong/p/3877961.html