Lodash - pad 方法



语法

_.pad([string=''], [length=0], [chars=' '])

如果字符串的长度小于 length,则在字符串的左侧和右侧填充。如果填充字符不能被 length 均匀整除,则截断填充字符。

参数

  • [string=''] (string) − 待填充的字符串。

  • [length=0] (number) − 填充长度。

  • [chars=' '] (string) − 用作填充的字符串。

输出

  • (string) − 返回填充后的字符串。

示例

var _ = require('lodash');
var result = _.pad('foo', 8, '_');

console.log(result);

将以上程序保存在 tester.js 中。运行以下命令来执行此程序。

命令

\>node tester.js

输出

__foo___
lodash_string.htm
广告