Javascript – String 增加 LeftPad 的 Function

在 C# 中其 String 當其 Length 不足時可在前方補上所需的字元, 那在 Javascript 中並沒有此 Function 可以使用, 那使用擴充的方式來增加所需的 Function. 那如下所示:

String.prototype.leftPad = function (padString, length) {
var str = this;
while (str.length < length)
str = padString + str;
return str;
}

留言

這個網誌中的熱門文章

WPF - 深入 Style

C# – M$ Chart Control 自定 ToolTip 的顯示

Vue.js - 基礎介紹教學