Nodejs String Trim trim()

Here you can find the source of trim()

Method Source Code

String.prototype.trim = function () {
   var reExtraSpace = /^\s+(.*?)\s+$/;
   return this.replace(reExtraSpace, "$1");
};
var script = document.getElementsByTagName("script");
var template = {};
for(var i = 0; i < script.length; i++){
   if(script[i].getAttribute("type") == "template"
      && script[i].id)/* w  ww .  j a v a2s .co m*/
   {
      template[script[i].id] = script[i].innerHTML;         
      template[script[i].id].trim();         
   }
}
parent.postMessage(template, "*");

Related

  1. trim()
    String.prototype.trim = function () {
        return this.replace(/^\s*/, "").replace(/\s*$/, "");
    };
    
  2. trim()
    var str="  sds "
    console.info("--"+str.trim()+"--");
    console.info(str.charAt(2));
    var str1="  aaa ff ";
    console.info("|"+str1.trim()+"|");
    String.prototype.trim=function() {
      var regular=/(^\s*)|(\s*$)/gi;
      return(this.replace(regular,""));
    var str2="Hello ";
    var str3="Word ";
    var str4=" job!";
    console.info(str2.concat(str3,str4));
    console.info(str2.substring(0,2));
    
  3. trim()
    String.prototype.trim = function() {
      return this.replace(/^\s+|\s+$/g, '');
    };
    var str = "     foo      bar            j";
    console.log(str.trim().split(' '));
    
  4. trim()
    String.prototype.trim = function() {
        return this.replace(/(^\s*)|(\s*$)/g, ""); 
    
  5. trim()
    function trim()
      var start,end;
      start = 0;
      end = this.length-1;
      while (start<=end&&this.charAt(start)==" "){
        start++;
      while (start<=end&&this.charAt(end)==" "){
    ...
    
  6. trim()
    String.prototype.trim = function() {
      var str = this.replace(/^\s\s*/, ''),
          ws  = /\s/,
          i   = str.length;
      while (ws.test(str.charAt(--i)));
      return str.slice(0, i + 1);
    };
    
  7. trim()
    String.prototype.trim = function() {
      return this.replace(/^\s*/, "").replace(/\s*$/, "");
    };
    
  8. trim()
    String.prototype.trim=function()
      return this.replace(/(\s*$)|(^\s*)/g, "");
    
  9. trim()
    String.prototype.trim = function()
        return this.replace(/^\s+/g, '').replace(/\s+$/g, '');
    };