複製程式碼 程式碼如下: //#region 移除空格 return this.replace(/(^s*)|(s*$)/g, "");} String.prototype.LTrim = function () { return this.replace(/(^s*)/g, "");} String.prototype.RTrim = function () { return this.replace(/(s*$)/g, "");}//#endregion