js判斷字串是否以指定的子字串結尾

admin發表於2017-04-05

本章節介紹一下如何判斷一個字串是否以指定的字串結尾。

程式碼例項如下:

[JavaScript] 純文字檢視 複製程式碼
String.prototype.endsWith=function(suffix){ 
  return this.indexOf(suffix,this.length - suffix.length)!==-1; 
}; 
var str="softwhy.com";
console.log(str.endsWith("com"));

上面的程式碼如果是以自定的子字串結尾,那麼就返回true,否則返回false。

相關閱讀:

(1).prototype可以參閱javascript prototype原型一章節。

(2).indexOf()方法可以參閱javascript String indexOf()一章節。


相關文章