js endswith
探索JavaScript中的endsWith方法——长沙家政网为您介绍!
什么是JavaScript中的endsWith呢?如果你还不清楚,那就跟随长沙家政网的小编一起来了解今天的分享吧!
1、关于endsWith简介
endsWith()方法是一个用于判断当前字符串是否以给定子字符串结尾的函数,它会返回true或false作为结果。这对于我们处理字符串时非常有用。此方法的源代码存储在GitHub的一个仓库中。如果你对交互式示例项目有兴趣并希望做出贡献,请克隆[
语法:str.endsWith(searchString[, length])。
2、参数详解
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
需要注意的是,这个方法已经加入到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方法的使用和扩展,相信你已经有了更深入的了解。在实际开发中,灵活运用此方法将大大提高你的工作效率。