String JavaScript - Método charAt ()

Descrição

charAt () é um método que retorna o caractere do índice especificado.

Os caracteres em uma string são indexados da esquerda para a direita. O índice do primeiro caractere é 0, e o índice do último caractere em uma string, chamadostringName, é stringName.length - 1.

Sintaxe

Use a seguinte sintaxe para localizar o caractere em um índice específico.

string.charAt(index);

Detalhes do argumento

index - Um número inteiro entre 0 e 1 menor que o comprimento da string.

Valor de retorno

Retorna o caractere do índice especificado.

Exemplo

Experimente o seguinte exemplo.

<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>

Resultado

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