Here you can find the source of rtrim()
String.prototype.rtrim = function(){ var res = this; while (res.substring(res.length - 1, res.length) == " ") { res = res.substring(0, res.length - 1); }//from w w w . jav a 2 s . c o m return res; }
String.prototype.rtrim = function() { return this.replace(/\s*$/g,'');
String.prototype.rtrim=function() return this.replace(/(\s*$)/g,'');
String.prototype.rtrim = function() { return this.replace(/(\s*$)/g, "");
String.prototype.rtrim = function() { return this.replace(/\s+$/,'');
String.prototype.rtrim = function() return this.replace( /\s*$/g, '' ) ;
String.prototype.rtrim=function() {return this.replace(/\s+$/,'');}
String.prototype.rtrim = function(ch) { var r = new RegExp("{0}+$".format(ch || "\\s")) return this.replace(r, ""); };
String.prototype.rtrim = function (charlist) { charlist = !charlist ? ' \\s\u00A0' : (charlist + '').replace(/([\[\]\(\)\.\?\/\*\{\}\+\$\^\:])/g, '$1'); var re = new RegExp('^[' + charlist + ']+', 'g'); return this.replace(re, ''); };
String.prototype.trimEnd = function() { for (var i=this.length-1; this.charAt(i) ==' '; i--) { this.substring(0, i); return this; };