Nodejs String Padding Left lpad(pSize, pCharPad)

Here you can find the source of lpad(pSize, pCharPad)

Method Source Code

String.prototype.lpad = function(pSize, pCharPad)
{
   var str = this;
   var dif = pSize - str.length;
   var ch = String(pCharPad).charAt(0);
   for (; dif>0; dif--) str = ch + str;
   return (str);/*  w w w.  j  a va  2 s . com*/
} //String.lpad

Related

  1. lpad(count, pad)
    String.prototype.lpad = function(count, pad) {
        pad = pad || '0';
        str = this + '';
        return str.length >= count ? str : new Array(count - str.length + 1).join(pad) + str;
    };
    
  2. lpad(l)
    String.prototype.lpad = function(l) {
      var s = this;
      while (s.length < l) { s = "0"+s; }
      return s;
    
  3. lpad(len, padstr)
    String.prototype.lpad = function(len, padstr) {
      return Array(len + 1 - this.length).join(padstr) + this;
    };
    String.prototype.rpad = function(len, padstr) {
      return this + Array(len + 1 - this.length).join(padstr);
    };
    
  4. lpad(len, s)
    String.prototype.lpad = function(len, s) {   
        var a = new Array(this);   
        var n = (len - this.length);   
        for ( var i = 0; i < n; i++) {   
            a.unshift(s);   
        return a.join("");   
    };
    
  5. lpad(length, padString)
    String.prototype.lpad = function(length, padString){
        var str = this;
        while (str.length < length)
            str = padString + str;
        return str;
    };
    
  6. lpad(pad, length)
    function fill(num) {
        return (num == 10 ? '' : '0') + num;
    String.prototype.lpad = function(pad, length) {
        var s = this;
        while (s.length < length) {
            s = pad + s;
        return s;
    ...
    
  7. lpad(padLength, padString)
    String.prototype.lpad = function(padLength, padString){
        var s = this;
        while(s.length < padLength)
            s = padString + s;
        return s;
    
  8. lpad(padString, length)
    String.prototype.lpad = function(padString, length) {
      var str = this;
      while (str.length < length)
          str = padString + str;
      return str;
    
  9. lpad(padString, length)
    String.prototype.lpad = function(padString, length) {
      var str = this;
        while (str.length < length)
            str = padString + str;
        return str;