首页 > 其他 > 详细

Confirm the Ending

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

检查一个字符串(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

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!