JavaScript 中的字符串 include() 方法
str.includes()函数用于检查参数字符串是否存在于给定字符串中。此函数区分大小写。该函数的语法如下:
str.includes(searchString, position)
参数此函数searchString的第一个参数是要在给定字符串中搜索的字符串。此函数位置的第二个参数确定要从其中搜索searchString的基本字符串中的起始索引。
下面提供了上述函数的示例:
示例 1:
print('Departed Train'.includes('ed Trai'));
输出:
true
在此示例中,函数includes()搜索ed Trai 。由于它在给定的字符串中找到,因此该函数返回true 。
示例 2:
print('Departed Train'.includes('train'));
输出:
false
在此示例中,函数includes()搜索train 。由于在给定字符串中找不到它,因此此函数返回false 。
示例 3:
print('Departed Train'.includes('Train'));
输出:
true
在此示例中,函数includes()搜索Train 。由于它在给定的字符串中找到,因此该函数返回true 。
上述函数的代码如下:
方案一:
// JavaScript to illustrate includes() function
输出:
true
方案二:
输出:
false
方案 3:
输出:
true