最新的Web开发教程
 

JavaScript字符串的endsWith()方法

JavaScript的字符串引用 JavaScript的字符串引用

检查字符串结尾“乾坤”:

var str = "Hello world, welcome to the universe.";
var n = str.endsWith("universe.");

n的结果将是:

true
试一试»

更多“试一试”的例子。


定义和用法

endsWith()方法来确定一个字符串是否与指定的字符串的字符结束。

该方法返回true如果字符串的字符结束, false如果不是。

注: endsWith()方法区分大小写。


浏览器支持

方法
endsWith() 41 12.0 17 9 36

句法

string.endsWith( searchvalue , length )

参数值

Parameter Description
searchvalue Required. The string to search for
length Optional. Specify the length of the string to search. If omitted, the default value is the length of the string

技术细节

返回值: 布尔。 返回true如果字符串的值结束,否则返回false
JavaScript的版本: ECMAScript中6

例子

更多示例

检查一个字符串“世界”结束,假设字符串长度为11个字符:

var str = "Hello world, welcome to the universe.";
var n = str.endsWith("world", 11);

n的结果将是:

true
试一试»

JavaScript的字符串引用 JavaScript的字符串引用