String.prototype.endsWith() - JavaScript 编辑
endsWith()
方法用来判断当前字符串是否是以另外一个给定的子字符串“结尾”的,根据判断结果返回 true
或 false
。
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
语法
str.endsWith(searchString[, length])
参数
searchString
- 要搜索的子字符串。
length
可选- 作为
str
的长度。默认值为str.length
。
返回值
如果传入的子字符串在搜索字符串的末尾则返回true
;否则将返回 false
。
描述
这个方法帮助你确定一个字符串是否在另一个字符串的末尾。这个方法是大小写敏感的。
Polyfill
这个方法已经加入到 ECMAScript 6 标准当中,但是可能还没有在所有的 JavaScript 实现中可用。然而,你可以通过如下的代码片段扩展 String.prototype.endsWith()
实现兼容:
if (!String.prototype.endsWith) {
String.prototype.endsWith = function(search, this_len) {
if (this_len === undefined || this_len > this.length) {
this_len = this.length;
}
return this.substring(this_len - search.length, this_len) === search;
};
}
示例
使用 endsWith()
var str = "To be, or not to be, that is the question.";
alert( str.endsWith("question.") ); // true
alert( str.endsWith("to be") ); // false
alert( str.endsWith("to be", 19) ); // true
规范
规范 |
---|
ECMAScript (ECMA-262) String.prototype.endsWith |
浏览器兼容性
BCD tables only load in the browser
这个页面上的兼容性表格是通过结构化的数据自动生成的,如果你希望改进这些数据,你可以查看 https://github.com/mdn/browser-compat-data 并提交你的改进。
参见
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论