📜  Javascript字符串endsWith()

📅  最后修改于: 2020-09-27 07:03:14             🧑  作者: Mango

JavaScript String EndsWith()方法检查字符串是否以给定字符串的字符 结尾。

endsWith()方法的语法为:

str.endsWith(searchString, length)

在这里, str是一个字符串。


EndsWith()参数

endsWith()方法具有:

  • searchString-str末尾要搜索的字符 。
  • length (可选)-用作搜索searchString的str的长度。默认值为str.length

从endsWith()返回值
  • 如果在字符串末尾找到给定字符,则返回true
  • 如果在字符串末尾找不到给定字符,则返回false

注意endsWith()方法区分大小写。


示例:使用endsWith()方法
sentence = "Java is to JavaScript what Car is to Carpet.";

let check = sentence.endsWith("to Carpet.");
console.log(check); // true

let check1 = sentence.endsWith(".");
console.log(check1); // true

// case sensitive
let check2 = sentence.endsWith("carpet.");
console.log(check2); // false

// second argument specifies the portion of string to consider
let check3 = sentence.endsWith("JavaScript", 21);
console.log(check3); // true

输出

true
true
false
true

推荐阅读: JavaScript字符串startsWith()