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

Confirm the Ending

时间:2016-10-27 12:24:19      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:else   pre   end   字符串   bst   方法   ast   false   位置   

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

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

方法一:

function confirmEnding(str, target) {
  if ( str.substr(str.length-target.length , str.length) === target) {
    return true;
  }else {
    return false;
  }
}

confirmEnding("Bastian", "n");

方法二:

function confirmEnding(str, target) {
  if ( str.slice(str.length-target.length , str.length) === target) {
    return true;
  }else {
    return false;
  }
}

confirmEnding("Bastian", "n");

方法三:

function confirmEnding(str, target) {
  if ( str.substring(str.length-target.length , str.length) === target) {
    return true;
  }else {
    return false;
  }
}

confirmEnding("Bastian", "n");

三种方法都是截取字符串指定字段,其中slice()和substring()接收的是起始位置和结束位置(不包括结束位置),而substr接收的则是起始位置和所要返回的字符串长度.

还有在对负值的处理上,slice()会将它字符串的长度与对应的负数相加,结果作为参数;substr()则仅仅是将第一个参数与字符串长度相加后的结果作为第一个参数;substring()则干脆将负参数都直接转换为0。

Confirm the Ending

标签:else   pre   end   字符串   bst   方法   ast   false   位置   

原文地址:http://www.cnblogs.com/baidx/p/confirm-the-ending.html

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