Here you can find the source of trim()
String.prototype.trim = function() { // skip leading and trailing whitespace // and return everything in between var x=this;/*from w w w . j av a2 s .c o m*/ x=x.replace(/^\s*(.*)/, "$1"); x=x.replace(/(.*?)\s*$/, "$1"); return x; }
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ""); };
'use strict'; String.prototype.trim = function(){ return this.replace(/(^\s*)|(\s*$)/g, "");
String.prototype.trim = function() return this.replace(/(^\s*)|(\s*$)/g, "");
String.prototype.trim = function(){ var str = this.replace(/\s+/g,"") return this;
$(document).ready(function(){ }); String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/g, '');
String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g,""); }; String.prototype.ltrim = function() { return this.replace(/^\s+/,""); }; String.prototype.rtrim = function() { return this.replace(/\s+$/,""); }; ...
String.prototype.trim=function(){ trimLeft = /^\s+/; trimRight = /\s+$/; return this.replace(trimLeft,"").replace(trimRight,""); };
String.prototype.trim = String.prototype.trim || (String.prototype.trim = function() { return this.replace(/^[ ]+|[ ]+$/g, ""); });
function cutFixedNum(value,num){ var value_str = "" + value; var index = value_str.indexOf('.'); if (index!=-1){ value_str = value_str.substring(0,index+num+1); return value_str; String.prototype.trim = function() ...