Javascript String lpad(pSize, pCharPad)
/**/* www . j av a2 s .c o m*/ * Adiciona m?todo lpad() ? classe String. * Preenche a String ? esquerda com o caractere fornecido, * at? que ela atinja o tamanho especificado. */ 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); } //String.lpad