JavaScript或jQuery字符串以效用函数结束

找出字符串是否以特定值结尾的最简单方法是什么?


你可以使用Regexps,就像这样:

str.match(/value$/)

如果字符串在它的末尾有'value'($),它将返回true。


从prototypejs窃取:

String.prototype.endsWith = function(pattern) {
    var d = this.length - pattern.length;
    return d >= 0 && this.lastIndexOf(pattern) === d;
};

'slaughter'.endsWith('laughter');
// -> true

常用表达

"Hello world".match(/world$/)
链接地址: http://www.djcxy.com/p/83893.html

上一篇: JavaScript or jQuery string ends with utility function

下一篇: Get the last occurrence of string within another string