Copiez le code comme suit :
//#region supprime les espaces
String.prototype.Trim = fonction () {
return this.replace(/(^/s*)|(/s*$)/g, "");
}
String.prototype.LTrim = fonction () {
return this.replace(/(^/s*)/g, "");
}
String.prototype.RTrim = fonction () {
return this.replace(/(/s*$)/g, "");
}
//#endregion