このメソッドは、指定されたインデックスから文字を返します。
文字列内の文字には、左から右にインデックスが付けられます。 stringName という文字列の最初の文字のインデックスは 0 で、最後の文字のインデックスは stringName.length-1 です。
文法
string.charAt(index);
パラメータの詳細は次のとおりです:
戻り値:
指定されたインデックスから文字を返します。
例:
<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