Lodash _.words

2021-09-23 16:34 更新

_.words([string=''], [pattern]) 

拆分字符串string中的詞為數(shù)組 。

添加版本

3.0.0

參數(shù)

  1. [string=''] (string): 要拆分的字符串。
  2. [pattern] (RegExp|string): 匹配模式。

返回

(Array): 返回拆分string后的數(shù)組。

例子

_.words('fred, barney, & pebbles');
// => ['fred', 'barney', 'pebbles'] 
_.words('fred, barney, & pebbles', /[^, ]+/g);
// => ['fred', 'barney', '&', 'pebbles']


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

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)