📜  Lodash _.strContains() 方法(1)

📅  最后修改于: 2023-12-03 15:02:47.161000             🧑  作者: Mango

Lodash _.strContains() 方法

_.strContains() 是 Lodash 库的一个字符串方法,用于检查一个字符串是否包含指定字符串。在本文中,我将为您介绍该方法的语法,用法以及示例。

语法
_.strContains(string, target, [position=0])
参数
  • string (string): 要检查的字符串。
  • target (string): 要查找的字符串。
  • [position=0] (number): 从哪个索引位置开始查找。(可选参数,默认为 0)
返回值

(boolean): 如果字符串 string 包含 target,则返回 true,否则返回 false

示例

下面是一些 _.strContains() 方法的示例。

基本用法
_.strContains('hello world', 'world');
// => true

_.strContains('hello world', 'friends');
// => false
使用 position 参数
_.strContains('hello world', 'world', 6);
// => false
其他

除了以上提到的,_.strContains() 方法还有以下一些特点:

  • 支持多个参数,在本文中只针对单个 target 参数进行介绍。
  • _.strContains() 方法是区分大小写的,如果要进行不区分大小写的查找,可以用 _.strLower() 方法或者 _.toLower() 方法将字符串转换成小写后进行查找。
_.strContains('Hello World', 'world');
// => false

_.strContains(_.strLower('Hello World'), 'world');
// => true

_.strContains(_.toLower('Hello World'), 'world');
// => true

以上就是 _.strContains() 方法的介绍,希望对您的开发有所帮助。