例
檢查字符串結尾“乾坤”:
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的字符串引用