📜  javascript startswith - Javascript (1)

📅  最后修改于: 2023-12-03 15:16:06.911000             🧑  作者: Mango

Javascript中的字符串startswith函数

简介

在 Javascript 中,字符串可以使用 startsWith() 函数来检查一个字符串是否以指定的字符串开头。这个函数返回一个布尔值,表示指定字符串是否为原字符串的前缀。

使用说明
语法
str.startsWith(searchString[, position])

参数

  • searchString : 要搜索的字符串
  • position : 可选参数,从原字符串中搜索的开始位置,默认为 0。

返回值

如果原字符串以指定的字符串开头,则返回 true,否则返回 false

示例
var str = 'hello world';
console.log(str.startsWith('hello')); // true

console.log(str.startsWith('world')); // false

console.log(str.startsWith('world', 6)); // true
注意事项
  • startsWith() 函数是区分大小写的。
  • 如果指定的位置小于 0,就相当于从 0 开始搜索。
  • 如果指定的位置大于原字符串长度,则始终返回 false
参考资料