码迷,mamicode.com
首页 > 其他好文 > 详细

Confirm the Ending

时间:2016-11-24 18:29:54      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:turn   cti   等于   color   从后往前   blog   log   pre   字符串   

检查一个字符串(str)是否以指定的字符串(target)结尾。

如果是,返回true;如果不是,返回false。

 

/*思路
  字符串长度str.length等于字符串位置str.indexOf() + 字符串长度target.length;
  为避免字符串中重复的target所以应从后往前搜索lastIndexOf() ;
*/

function confirmEnding(str, target) {
  if(str.lastIndexOf(target)+target.length!=str.length){
    return false;
  }
  return true;
}

confirmEnding("Bastian", "n");

 

Confirm the Ending

标签:turn   cti   等于   color   从后往前   blog   log   pre   字符串   

原文地址:http://www.cnblogs.com/fffangrui/p/6098550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!