Lodash _.endsWith

2021-09-23 14:47 更新

_.endsWith([string=''], [target], [position=string.length])

檢查字符串string是否以給定的target字符串結尾。

添加版本

3.0.0

參數(shù)

  1. [string=''] (string): 要檢索的字符串。
  2. [target] (string): 要檢索字符。
  3. [position=string.length] (number): 檢索的位置。

返回

(boolean): 如果字符串string以target字符串結尾,那么返回 true,否則返回 false。

例子

_.endsWith('abc', 'c');
// => true 
_.endsWith('abc', 'b');
// => false
 _.endsWith('abc', 'b', 2);
// => true


以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號