Nodejs String Trim Left leftTrim()

Here you can find the source of leftTrim()

Method Source Code

// ( 5 ) String.leftTrim()
String.prototype.leftTrim =function(){
    return this.replace(/^\s+/,'');
}

Related

  1. lTrim()
    String.prototype.lTrim = function() {
      return this.replace(/(^\s*)/g, "");
    };
    
  2. lTrim()
    String.prototype.lTrim = function () {
      var $whitespace = new String(" \t\n\r");
      if ($whitespace.indexOf(this.charAt(0)) != -1) {
        var $i = this.length;
        var $j = 0;
        while ($j < $i && $whitespace.indexOf(this.charAt($j)) != -1) {
          $j++;
        return this.substring($j, $i);
    ...
    
  3. lTrim(charlist)
    String.prototype.lTrim = function(charlist) {
      if (charlist === undefined)
        charlist = "\s";
      return this.replace(new RegExp("^[" + charlist + "]+"), "");
    };
    
  4. leftTrim()
    String.prototype.leftTrim = function () {
        return this.replace(/^\s+/, "");
    
  5. leftTrim()
    String.prototype.leftTrim = function() { 
       return this.replace(/(^\s*)/g, ""); 
    
  6. lefttrim( )
    String.prototype.lefttrim = function( )
      return( this.replace(new RegExp("^[\\s]+", "gm"), "") );
    };
    
  7. TrimStart( aimStr )
    String.prototype.TrimStart = function( aimStr )
        var str = this;
        var re = My.RegExp.InvolvedCharsRegExp;
        var reStart;
        if ( aimStr )
            aimStr = aimStr.replace( re, '\\$1' );
            reStart = new RegExp( '^(' + aimStr + ')+' );
    ...
    
  8. LTrim()
    String.prototype.LTrim = function(){
      return this.replace(/(^\s*)/g, "");
    };
    
  9. LTrim()
    String.prototype.LTrim = function() {
        return this.replace(/^\s+/g, "");