Javascrip trtrim, javascript ltrim fonksiyonları kullanımı String.prototype.ltrim = function (){
return this.replace(/^\s*/, “” );
}
//Function to trim the space in the right side of the string
String.prototype.rtrim = function(){
return this.replace( /\s*$/, “” );
}
//Function to trim the space in the string
String.prototype.trim = function() {
return this.rtrim().ltrim();
}