Here you can find the source of trimEnd()
/*/*from w ww. ja v a2 s . c o m*/ * * FString.js * * Extensions to JavaScript Array may be bad form... but whatever * */ /** ------------------------------------------------------------------------ * * Strings * * ------------------------------------------------------------------------/ /** * * trims white space from right (end) of String * * @return {String} trimmed input String * */ String.prototype.trimEnd = function() { for (var i=this.length-1; this.charAt(i) ==' '; i--) { this.substring(0, i); } return this; };
String.prototype.rtrim = function() return this.replace( /\s*$/g, '' ) ;
String.prototype.rtrim = function(){ var res = this; while (res.substring(res.length - 1, res.length) == " ") { res = res.substring(0, res.length - 1); return res;
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(c) c = c?c:' '; var i=this.length-1; for(;i>=0 && this.charAt(i)==c;i--); return this.substring(0,i+1); var Utils = { getValues : function(dataSet) ...
String.prototype.trimEnd=function(c) c = c?c:' '; var i=this.length-1; for(;i>=0 && this.charAt(i)==c;i--); return this.substring(0,i+1);
String.prototype.trimEnd = function(s) { return this.replace(new RegExp(s + "+$", "gm"), "")
String.prototype.trimEnd = function (trimStr) { if (!trimStr) { return this; var temp = this; while (true) { if (temp.substr(temp.length - trimStr.length, trimStr.length) != trimStr) { break; temp = temp.substr(0, temp.length - trimStr.length); return temp;