Lodash - padEnd 方法
语法
_.padEnd([string=''], [length=0], [chars=' '])
如果字符串比给定长度短,则在字符串右侧填充字符。如果填充字符超过给定长度,则对其进行截断。
参数
[string=''] (字符串) − 要填充的字符串。
[length=0] (数字) − 填充长度。
[chars=' '] (字符串) − 用作填充的字符串。
输出
(字符串) − 返回填充后的字符串。
示例
var _ = require('lodash'); var result = _.padEnd('foo', 8, '_'); console.log(result);
将以上程序保存在tester.js中。运行以下命令以执行此程序。
命令
\>node tester.js
输出
foo_____
lodash_string.htm
广告