访问字符串索引处的字符
使用 charAt()
获取字符串中指定索引处的字符。
var string = "Hello, World!";
console.log( string.charAt(4) ); // "o"
或者,因为字符串可以像数组一样处理,所以使用括号括号表示索引。
var string = "Hello, World!";
console.log( string[4] ); // "o"
要获取指定索引处的字符的字符代码,请使用 charCodeAt()
。
var string = "Hello, World!";
console.log( string.charCodeAt(4) ); // 111
请注意,这些方法都是 getter 方法(返回值)。JavaScript 中的字符串是不可变的。换句话说,它们都不能用于在字符串中的某个位置设置字符。