js 中有endswith_JS string endsWith()

本文目录结构

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.

Syntaxstr.endsWith(searchString[, length])

参数

searchString

要搜索的子字符串。

length

可选。作为 str 的长度。默认值为 str.length。

返回值

如果传入的子字符串在搜索字符串的末尾则返回true;否则将返回 false。

描述

这个方法帮助你确定一个字符串是否在另一个字符串的末尾。这个方法是大小写敏感的。

示例

使用 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

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;

};

}

规范

参见

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值