當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。