JavaScript 中的子字符串检查
includes()方法可用于检查字符串是否包含指定的子字符串。如果存在子字符串,则返回true 。此方法区分大小写。
句法:
string.includes(searchvalue, start)
参数:此方法需要 2 个参数:-
- 搜索值:必需。它指定需要搜索的子字符串。
- 开始:可选。它指定执行搜索的索引。默认为 0。
返回值:如果指定的子字符串存在于字符串中,则返回true ,否则返回false 。
例子:
Welcome to GeeksforGeeks
Click the button to check whether
Geeks is present in the below string.
Hello there! Welcome to GeeksforGeeks.
输出:
在点击试用按钮之前:
点击试用按钮后:
支持的浏览器: include() 方法支持的浏览器如下:
- 谷歌浏览器 41
- 苹果Safari 9
- 火狐 40
- 歌剧 28
- 边缘 12.0