Lodash _.truncate

2021-09-23 16:22 更新

_.truncate([string=''], [options=])

截斷string字符串,如果字符串超出了限定的最大值。 被截斷的字符串后面會以 omission 代替,omission 默認是 "..."。

添加版本

4.0.0

參數(shù)

  1. [string=''] (string): 要截斷的字符串。
  2. [options=] (Object): 選項對象。
  3. [options.length=30] (number): 允許的最大長度。
  4. [options.omission='...'] (string): 超出后的代替字符。
  5. [options.separator] (RegExp|string): 截斷點。

返回

(string): Returns the truncated string.

例子

_.truncate('hi-diddly-ho there, neighborino');// => 'hi-diddly-ho there, neighbo...'
 _.truncate('hi-diddly-ho there, neighborino', {  'length': 24,  'separator': ' '});
// => 'hi-diddly-ho there,...' 
_.truncate('hi-diddly-ho there, neighborino', {  'length': 24,  'separator': /,? +/});
// => 'hi-diddly-ho there...'
 _.truncate('hi-diddly-ho there, neighborino', {  'omission': ' [...]'});
// => 'hi-diddly-ho there, neig [...]'


以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號