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() 搜索火车。由于在给定的字符串中找不到它,因此此函数返回 false。
范例3:
print('Departed Train'.includes('Train'));
输出:
true
在本例中,函数 includes() 搜索火车。由于它是在给定的字符串中找到的,因此该函数返回 true。
下面提供了上述函数的代码:
程序1:
// JavaScript to illustrate includes() function
<script>
function func() {
// Original string
var str = 'Departed Train';
// Finding the search string in the given string
var value = str.includes('ed Trai');
document.write(value);
}
func();
</script>
输出:
true
程序2:
<script>
// JavaScript to illustrate includes() function
function func() {
// Original string
var str = 'Departed Train';
// Finding the search string in the given string
var value = str.includes('train');
document.write(value);
}
func();
</script>
输出:
false
程序3:
<script>
// JavaScript to illustrate includes() function
function func() {
// Original string
var str = 'Departed Train';
// Finding the search string in the given string
var value = str.includes('Train');
document.write(value);
}
func();
</script>
输出:
true
相关用法
- Javascript String includes()用法及代码示例
- JavaScript Array includes()用法及代码示例
- Javascript typedArray.includes()用法及代码示例
- Lodash _.includes()用法及代码示例
- Javascript String startsWith()用法及代码示例
- Javascript String lastIndexOf()用法及代码示例
- Javascript String toUpperCase()用法及代码示例
- Javascript String toLowerCase()用法及代码示例
- Javascript String indexOf()用法及代码示例
- JavaScript String endsWith()用法及代码示例
- Javascript String concat()用法及代码示例
- JavaScript String charAt()用法及代码示例
- JavaScript String fromCharCode()用法及代码示例
- Javascript String substr()用法及代码示例
- JavaScript String substring()用法及代码示例
- Javascript string.toString()用法及代码示例
- Javascript string.codePointAt()用法及代码示例
注:本文由纯净天空筛选整理自HGaur大神的英文原创作品 String includes() Method in JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。