Here you can find the source of trim(str)
// Trim function taken from // http://blog.stevenlevithan.com/archives/faster-trim-javascript // Thank you for the quick trim! String.prototype.trim = function(str) { str = str.replace(/^\s+/,''); for( var i = str.length - 1 ; i >= 0 ; i--) { if(/\S/.test(str.charAt(i))) { str = str.substring(0,i+1);//from w w w. j a v a 2 s .co m break; } } return str; };
String.prototype.trim = function(ch) { var r = new RegExp("^{0}+|{0}+$".format(ch || "\\s"), "g"); return this.replace(r, ""); };
String.prototype.trim = function (character) { return this.trimLeft(character).trimRight(character); };
'use strict'; String.prototype.trim = function (charlist) { return this.ltrim(charlist).rtrim(charlist); };
String.prototype.trim = function(chars) { return this.replace(new RegExp('^[' + (chars || '\\s') + ']+|[' + (chars || '\\s') + ']+$', 'g'), ''); };
String.prototype.trim = function (fag='default'){ const preg_arr = {'default':/(^\s*)|(\s*$)/,'left':/(^\s*)/,'right':/(\s*$)/}; switch(fag){ case 'left': return this.replace(preg_arr.left,''); break; case 'right': return this.replace(preg_arr.right,''); break; ...
var trim = function (str) { return str.replace(/\s*/g, ""); };
String.prototype.trim = function (ws) if(!this.length) return ""; var tmp = this.stripNL().ltrim().rtrim(); if(ws) return tmp.replace(/ +/g, ' '); else return tmp; String.prototype.rtrim = function () if(!this.length) return ""; return this.replace(/\s+$/g, ''); String.prototype.ltrim = function () if(!this.length) return ""; return this.replace(/^\s+/g, ''); String.prototype.stripNL = function () if(!this.length) return ""; return this.replace(/[\n\r]/g, '');
String.prototype.trim2 = function() { return this.replace(/^\s+|\s+$/g, ''); }; String.prototype.trim = function() { return this.replace(/^\s+/, '').replace(/\s+$/, ''); }; 'foo '.trim(); ' foo'.trim(); ' foo '.trim(); ...
String.prototype.trimBoth = function(s) { return this.replace(new RegExp("^" + s + "+|" + s + "+$", "gm"), "");