当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript String endsWith()用法及代码示例


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

用法:

str.endsWith(searchString, length)

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

参数:

endsWith() 方法接受:

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

返回:

  • 如果在字符串末尾找到给定字符,则返回 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 String endsWith()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。