String.prototype.RLTrim = function () /* ========================= supprimer les espaces initiaux et finaux ========================== exemples : alert(" exemple ".RLTrim()); */ { return this.replace(/(^\s*)|(\s*$)/g,""); }