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


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。