انسخ رمز الكود كما يلي:
//# المنطقة قم بإزالة المسافات
String.prototype.Trim = الوظيفة () {
إرجاع this.replace(/(^/s*)|(/s*$)/g, "");
}
String.prototype.LTrim = الوظيفة () {
إرجاع this.replace(/(^/s*)/g, "");
}
String.prototype.RTrim = الوظيفة () {
إرجاع this.replace(/(/s*$)/g, "");
}
//#endregion