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


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


JavaScript String charAt() 方法返回字符串中指定索引處的字符。

用法:

str.charAt(index)

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

參數:

charAt() 方法接受:

  • index- 之間的整數0str.length - 1.如果index無法轉換為整數或未提供,默認值0被使用。

返回:

  • 返回一個字符串,該字符串表示指定 index 處的字符(正好是一個 UTF-16 代碼單元)。

注意charAt()如果返回一個空字符串index超出範圍。

示例:使用charAt() 方法

let sentence = "Happy Birthday to you!";

let index1 = sentence.charAt(2);
console.log("Character at index 2:" + index1); // 'p'

// index is converted to integer
let index2 = sentence.charAt(6.5); // 'B'
console.log("Character at index 6:" + index2);

// Empty string if index out of range
let index3 = sentence.charAt(100);
console.log("Character at index 100:" + index3); // ''

// default value is 0
let index4 = sentence.charAt();
console.log("Character at index 0:" + index4); // 'H'

輸出

Character at index 2: p
Character at index 6: B
Character at index 100: 
Character at index 0: H

相關用法


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