检查字符串是否以给定的目标字符串结束JavaScript的

问题描述 投票:0回答:4

我正在尝试编写javascript代码,测试第一个字符串的结尾是否与目标相同,返回true。否则,返回false。必须使用.substr()来获得结果。

function end(str, target) {
myArray = str.split();
//Test if end of string and the variables are the same
if (myArray.subsrt(-1) == target) {
 return true;
}
else {
 return false;
}
}

end('Bastian', 'n');
javascript arrays substr
4个回答
7
投票

尝试:

function end(str, target) {
   return str.substring(str.length-target.length) == target;
}

更新:

在新的浏览器中,您可以使用:string.prototype.endsWith,但IE需要使用polyfill(您可以使用包含polyfill的https://polyfill.io,不为现代浏览器返回任何内容,它对于与IE相关的其他内容也很有用)。


0
投票

你可以尝试这个......

 function end(str, target) {
  var strLen = str.length;
  var tarLen = target.length;
  var rest = strLen -tarLen;
  strEnd = str.substr(rest);

  if (strEnd == target){
    return true;
     }else{
  return false;
     }  
 return str;
}
end('Bastian', 'n');

0
投票

你可以试试这个:

function end(str, target) {
    return str.substring(- (target.length)) == target;
}

0
投票

从ES6开始,你可以使用endsWith()和字符串。例如:

let mystring = 'testString';
//should output true
console.log(mystring.endsWith('String'));
//should output true
console.log(mystring.endsWith('g'));
//should output false
console.log(mystring.endsWith('test'));
© www.soinside.com 2019 - 2024. All rights reserved.