JavaScript String endsWith() 方法

定义和用法

如果字符串以规定字符串结尾,endsWith() 方法返回 true

否则返回 false

endsWith() 方法区分大小写。

另请参阅:

startswith() 方法

实例

例子 1

检查字符串是否以 "world" 结尾:

let text = "Hello world";
let result = text.endsWith("world");

亲自试一试

let text = "Hello World";
let result = text.endsWith("world");

亲自试一试

例子 2

检查字符串的前 11 个字符是否以 "world" 结尾:

let text = "Hello world, welcome to the universe.";
text.endsWith("world", 11);

亲自试一试

语法

string.endsWith(searchvalue, length)

参数

参数 描述
searchvalue 必需。要搜索的字符串。
length

可选。要搜索的字符串的长度。

默认值是字符串的长度。

返回值

类型 描述
布尔值 如果字符串以该值结尾,则为 true,否则为 false

浏览器支持

endsWith() 是 ECMAScript6 (ES6) 特性。

所有浏览器都支持 ES6 (JavaScript 2015):

Chrome Edge Firefox Safari Opera
Chrome Edge Firefox Safari Opera
支持 支持 支持 支持 支持

Internet Explorer 11(及更早版本)不支持 endsWith()。

相关页面

JavaScript 字符串

JavaScript 字符串方法

JavaScript 字符串搜索