charAt()
优质
小牛编辑
133浏览
2023-12-01
charAt()是一个从指定索引返回字符的方法。 字符串中的字符从左到右编制索引。 第一个字符的索引是0,字符串中最后一个字符的索引(称为stringName)是stringName.length - 1。
语法 (Syntax)
string.charAt(index);
参数细节 (Argument Details)
index - 小于字符串长度的0到1之间的整数。
返回值 (Return Value)
返回指定索引中的字符。
例子 (Example)
var str = new String("This is string");
console.log("str.charAt(0) is:" + str.charAt(0));
console.log("str.charAt(1) is:" + str.charAt(1));
console.log("str.charAt(2) is:" + str.charAt(2));
console.log("str.charAt(3) is:" + str.charAt(3));
console.log("str.charAt(4) is:" + str.charAt(4));
console.log("str.charAt(5) is:" + str.charAt(5));
输出 (Output)
str.charAt(0) is:T
str.charAt(1) is:h
str.charAt(2) is:i
str.charAt(3) is:s
str.charAt(4) is:
str.charAt(5) is:i