当前位置: 代码迷 >> 综合 >> 【JS基础】startsWith()方法
  详细解决方案

【JS基础】startsWith()方法

热度:42   发布时间:2024-03-05 22:33:53.0

startsWith()方法

startsWith()方法用来判断当前字符串是否是以另外一个给定的子字符串“开头”的,根据判断结果返回 true 或 false

参数:

str.startsWith(searchString [, position])

searchString
  • 要搜索的子字符串
position
  • 在 str 中搜索 searchString 的开始位置,默认值为 0,也就是真正的字符串开头处

示例:

var str = "To be, or not to be, that is the question.";console.log(str.startsWith("To be"));         // true
console.log(str.startsWith("not to be"));     // false 有个逗号隔绝了
console.log(str.startsWith("not to be", 10)); // true