JavaScript String charAt() 方法
描述
charAt() 是一个返回指定下标处字符的方法。
字符串中的字符从左到右进行索引。第一个字符的下标为0,字符串中最后一个字符的下标为 stringName.length – 1。
语法
使用以下语法来找到特定下标处的字符。
string.charAt(index);
参数详情
index − 一个介于0和字符串长度减1之间的整数。
返回值
返回指定索引处的字符。
示例
尝试以下示例。
<html>
<head>
<title>JavaScript String charAt() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String( "This is string" );
document.writeln("str.charAt(0) is:" + str.charAt(0));
document.writeln("<br />str.charAt(1) is:" + str.charAt(1));
document.writeln("<br />str.charAt(2) is:" + str.charAt(2));
document.writeln("<br />str.charAt(3) is:" + str.charAt(3));
document.writeln("<br />str.charAt(4) is:" + str.charAt(4));
document.writeln("<br />str.charAt(5) is:" + str.charAt(5));
</script>
</body>
</html>
输出
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