JavaScript 字符串 startsWith() 方法
实例
检查字符串是否以 "Hello" 开头:
var str = "Hello world, welcome to the universe.";
var n = str.startsWith("Hello");
亲自试一试 »
页面下方有更多实例。
定义和用法
startsWith()
方法确定字符串是否以指定字符串的字符开头。
如果字符串以字符开头,则此方法返回 true,否则返回 false。
注释: startsWith()
方法区分大小写。
浏览器支持
方法 | |||||
---|---|---|---|---|---|
startsWith() | 41 | 12.0 | 17 | 9 | 28 |
语法
string.startsWith(searchvalue, start)
参数值
参数 | 描述 |
---|---|
searchvalue | 必需。要搜索的字符串 |
start | 可选。默认值为0。在哪个位置开始搜索 |
技术细节
返回值: | 布尔值。如果字符串以值开头,则返回true,否则返回false |
---|---|
JavaScript 版本: | ECMAScript 6 |
更多实例
检查字符串是否以 "world" 开头,从位置 6 开始搜索:
var str = "Hello world, welcome to the universe.";
var n = str.startsWith("world", 6);
亲自试一试 »