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()