Nodejs String Trim trim()

Here you can find the source of trim()

Method Source Code

//script.js/*from  w  w w  .  j  a  v  a 2  s.c om*/
String.prototype.trim = function() {
  return this.replace(/^\s*/, "").replace(/\s*$/, "");
};

Related

  1. trim()
    String.prototype.trim = function() {
      return this.replace(/^\s+|\s+$/g, '');
    };
    var str = "     foo      bar            j";
    console.log(str.trim().split(' '));
    
  2. trim()
    String.prototype.trim = function() {
        return this.replace(/(^\s*)|(\s*$)/g, ""); 
    
  3. 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)==" "){
    ...
    
  4. trim()
    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)
    ...
    
  5. 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);
    };
    
  6. trim()
    String.prototype.trim=function()
      return this.replace(/(\s*$)|(^\s*)/g, "");
    
  7. trim()
    String.prototype.trim = function()
        return this.replace(/^\s+/g, '').replace(/\s+$/g, '');
    };
    
  8. trim()
    String.prototype.trim = function() {
      var str = this.replace(/^\s+/, '');
      for (var i = str.length - 1; i >= 0; i--) {
        if (/\S/.test(str.charAt(i))) {
          str = str.substring(0, i + 1);
          break;
      return str;
    ...
    
  9. trim()
    String.prototype.trim = function() {
        return this.replace(/(^\s+)|(\s+$)/g, "");