确定一个字符串是否包含在另一个字符串的方法
程序员文章站
2023-12-21 15:58:40
...
(1)indexOf()
indexOf()方法返回String对象第一次出现指定字符串的索引,若未找到指定值,返回-1。
if (str.indexOf(keywords) != -1) {
//如果包含则进来此处
}
(2)includes()
includes()方法判断一个字符串是否包含在另一个字符串中,返回true或false。
if (str.includes(keywords)) {
//如果包含则进来此处
}