📅  最后修改于: 2023-12-03 15:02:47.161000             🧑  作者: Mango
_.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
_.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()
方法的介绍,希望对您的开发有所帮助。