코드 복사 코드는 다음과 같습니다. //#region 공백 제거 String.prototype .Trim = function () { 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