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


JavaScript String startsWith()用法及代碼示例


在本教程中,我們將借助示例了解 JavaScript 字符串 startsWith() 方法。

startsWith() 方法檢查字符串是否以指定字符串的字符開頭。

示例

const message = "JavaScript is fun";

// check if message starts with Java
let result = message.startsWith("Java");
console.log(result);

// Output: true

startsWith() 語法

用法:

str.startsWith(searchString, position)

在這裏,str 是一個字符串。

參數:

startsWith() 方法接受:

  • searchString - 要在 str 開頭搜索的字符。
  • position(可選) - 在str開始尋找searchString.默認值為0.

返回:

  • 如果在字符串的開頭找到給定的字符,則返回 true
  • 如果在字符串的開頭沒有找到給定的字符,則返回 false

注意: 這startsWith()方法區分大小寫。

示例:使用startsWith() 方法

sentence = "Java is to JavaScript what Car is to Carpet.";

let check = sentence.startsWith("Java");
console.log(check); // true

let check1 = sentence.startsWith("Java is");
console.log(check1); // true

// case sensitive
let check2 = sentence.startsWith("JavaScript");
console.log(check2); // false

// second argument specifies the starting position
let check3 = sentence.startsWith("JavaScript", 11);
console.log(check3); // true

輸出

true
true
false
true

相關用法


注:本文由純淨天空篩選整理自 Javascript String startsWith()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。