다음과 같이 코드 코드를 복사합니다.
//#region 공백 제거
String.prototype.Trim = 함수() {
return this.replace(/(^/s*)|(/s*$)/g, "");
}
String.prototype.LTrim = 함수() {
return this.replace(/(^/s*)/g, "");
}
String.prototype.RTrim = 함수() {
return this.replace(/(/s*$)/g, "");
}
//#endregion