freeCodeCamp Confirm the Ending

Posted krystal-33

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了freeCodeCamp Confirm the Ending相关的知识,希望对你有一定的参考价值。

检查字符串的首尾


       

           判断一个字符串(str)是否以指定的字符串(target)结尾。 如果是,返回true;如果不是,返回false。

 

         

 1 function confirmEnding(str, target) {
 2 
 3   // 获取字符串和所要匹配的字符串参数的长度
 4 
 5   var strlength=str.length;
 6   var targetlength=target.length;
 7 
 8    // 截取所要匹配的区域
 9 
10   var result=str.substr(strlength-targetlength,strlength-1);
11   if(result==target)
12     {
13       return true;
14     }
15   else
16     {
17       return false;
18     }
19    
20 
21 }
22 
23 confirmEnding("Bastian", "n");

 

结果

true

 

以上是关于freeCodeCamp Confirm the Ending的主要内容,如果未能解决你的问题,请参考以下文章

Map the Debris(freecodecamp高级算法8)

freeCodeCamp:Find the Longest Word in a String

Confirm the Ending

Confirm the Ending

Confirm the Ending

Confirm the Ending