服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

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

string如果它短于左侧和右侧垫length。如果填充字符不能被平均分割,则会被截断length

以来

3.0.0

参数
  1. [string=''] (字符串):要填充的字符串。
  2. [length=0] (数字):填充长度。
  3. [chars=' '] (字符串):用作填充的字符串。
返回

(字符串):返回填充的字符串。

_.pad('abc', 8);
// => '  abc   '
 
_.pad('abc', 8, '_-');
// => '_-abc_-_'
 
_.pad('abc', 3);
// => 'abc'